run the initial checkout loudly

This commit is contained in:
Aaron Bieber 2023-05-22 20:30:23 -06:00
parent 94c587f49d
commit a05b17b961
No known key found for this signature in database

View File

@ -19,7 +19,7 @@ my $repo_dir = "/var/lib/pr-status/nixpkgs";
$ENV{"GIT_CONFIG_SYSTEM"} = ""; # Ignore insteadOf rules
$ENV{"HOME"} = "/tmp"; # Ignore ~/.netrc
Git::command( 'clone', 'https://github.com/nixos/nixpkgs', $repo_dir )
Git::command_noisy( 'clone', 'https://github.com/nixos/nixpkgs', $repo_dir )
if !-e $repo_dir;
my $repo = Git->repository( Directory => $repo_dir );