From: Joey Hess Date: Tue, 20 Jan 2009 23:46:29 +0000 (-0500) Subject: Revert "fix a few more messages for absolute paths" X-Git-Url: https://git.madduck.net/code/myrepos.git/commitdiff_plain/76100140e796769ea59bca8a4dd3887982c605bf Revert "fix a few more messages for absolute paths" This reverts commit 689a4dea790ed14a4b209300a48a4eb24cedf083. Conflicts: mr --- diff --git a/mr b/mr index 077160d..e274670 100755 --- a/mr +++ b/mr @@ -418,7 +418,7 @@ sub rcs_test { chomp $rcs; if ($rcs=~/\n/s) { $rcs=~s/\n/, /g; - print STDERR "mr $action: found multiple possible repository types ($rcs) for $dir\n"; + print STDERR "mr $action: found multiple possible repository types ($rcs) for $topdir$subdir\n"; return undef; } if (! length $rcs) { @@ -511,11 +511,11 @@ sub action { elsif (! defined $command) { my $rcs=rcs_test(@_); if (! defined $rcs) { - print STDERR "mr $action: unknown repository type and no defined $action command for $dir\n"; + print STDERR "mr $action: unknown repository type and no defined $action command for $topdir$subdir\n"; return FAILED; } else { - print STDERR "mr $action: no defined action for $rcs repository $dir, skipping\n"; + print STDERR "mr $action: no defined action for $rcs repository $topdir$subdir, skipping\n"; return SKIPPED; } }