From: Joey Hess Date: Fri, 28 Aug 2009 01:51:06 +0000 (-0400) Subject: print which remotes are failing X-Git-Tag: 3.1415926~35 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=588b8951d37a4ef737edf3e36e0e8ae6c9a51f38;p=ikiwiki.git print which remotes are failing --- diff --git a/gitremotes b/gitremotes index bcee005c3..e2468814b 100755 --- a/gitremotes +++ b/gitremotes @@ -15,13 +15,19 @@ while () { # check configured url to deal with it changing my $info=`git remote show -n $remote`; my ($oldurl)=$info=~/URL: (.*)/m; + my $r; if ($oldurl ne $url) { system("git remote rm $remote 2>/dev/null"); - $error |= system("git", "remote", "add", "-f", $remote, $url); + $r = system("git", "remote", "add", "-f", $remote, $url) } else { - $error |= system("git", "fetch", "--no-tag", $remote); + $r = system("git", "fetch", "--no-tag", $remote); } + + if ($r != 0) { + print "$remote failed\n"; + } + $error |= $r; } } close IN;