summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jackson <ijackson@chiark.greenend.org.uk>2015-07-04 23:10:09 +0100
committerIan Jackson <ijackson@chiark.greenend.org.uk>2015-07-04 23:10:09 +0100
commitb769d51ab9e8b6102ec82197c6cd4005b87a9ada (patch)
tree113468991ab9b345ed63af4012d8fff710566d9b
parent0542488d6394b44c359f773013a1edc23b48de84 (diff)
dgit: Rationalise some messages
-rwxr-xr-xdgit4
1 files changed, 2 insertions, 2 deletions
diff --git a/dgit b/dgit
index 3ef4348..49c4f36 100755
--- a/dgit
+++ b/dgit
@@ -1020,7 +1020,7 @@ sub check_for_git () {
my ($usedistro,) = access_distros();
$instead_distro= cfg("dgit-distro.$usedistro.diverts.$divert");
$instead_distro =~ s{^/}{ access_basedistro()."/" }e;
- printdebug "diverting $divert so using distro $instead_distro\n";
+ progress "diverting to $divert (using config for $instead_distro)";
return check_for_git();
}
failedcmd @cmd unless $r =~ m/^[01]$/;
@@ -1347,7 +1347,7 @@ sub git_fetch_us () {
push @specs,
map { "+refs/$_/*:".lrfetchrefs."/$_/*" }
qw(tags heads);
- runcmd_ordryrun_local @git, qw(fetch -p -n), access_giturl(), @specs;
+ runcmd_ordryrun_local @git, qw(fetch -p -n -q), access_giturl(), @specs;
my %here;
my $tagpat = debiantag('*',access_basedistro);