From a05b17b961f0862c21c1bc9a06055b51df7bddd6 Mon Sep 17 00:00:00 2001 From: Aaron Bieber Date: Mon, 22 May 2023 20:30:23 -0600 Subject: [PATCH] run the initial checkout loudly --- pr-status.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pr-status.pl b/pr-status.pl index 8466ade..9a37b68 100755 --- a/pr-status.pl +++ b/pr-status.pl @@ -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 );