From: Joey Hess Date: Thu, 18 Oct 2007 18:57:21 +0000 (-0400) Subject: * Output list of failed repos to stderr when -s is used. X-Git-Url: https://git.madduck.net/code/myrepos.git/commitdiff_plain/da4251ccfad6a4ea83fcc21a70f7f7dd26e5fa55?ds=sidebyside * Output list of failed repos to stderr when -s is used. --- diff --git a/debian/changelog b/debian/changelog index 8ba90b0..bfac297 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,8 +4,9 @@ mr (0.4) UNRELEASED; urgency=low * Signal handling for commands run by mr, including handling of SIGINT to stop mr. * Ensure parent dir exists prior to checkout. (madduck) + * Output list of failed repos to stderr when -s is used. - -- Joey Hess Thu, 18 Oct 2007 13:57:41 -0400 + -- Joey Hess Thu, 18 Oct 2007 14:56:58 -0400 mr (0.3) unstable; urgency=low diff --git a/mr b/mr index 1e5c2fd..95a7fe8 100755 --- a/mr +++ b/mr @@ -537,7 +537,7 @@ if ($stats) { print "mr $action: (skipped: ".join(" ", @skipped).")\n"; } if (@failed) { - print "mr $action: (failed: ".join(" ", @failed).")\n"; + print STDERR "mr $action: (failed: ".join(" ", @failed).")\n"; } } if (@failed) {