From 27f7f9bc90fdd1cfb82fc81fb87461c6918dc97c Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Mon, 22 May 2023 20:42:14 -0600 Subject: [PATCH] test to see if we are getting git --- pr-status.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/pr-status.pl b/pr-status.pl index 9a37b68..7f28363 100755 --- a/pr-status.pl +++ b/pr-status.pl @@ -19,6 +19,7 @@ my $repo_dir = "/var/lib/pr-status/nixpkgs"; $ENV{"GIT_CONFIG_SYSTEM"} = ""; # Ignore insteadOf rules $ENV{"HOME"} = "/tmp"; # Ignore ~/.netrc +warn Git::exec_path(); Git::command_noisy( 'clone', 'https://github.com/nixos/nixpkgs', $repo_dir ) if !-e $repo_dir; my $repo = Git->repository( Directory => $repo_dir );