X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/7d95a4a9b0357e85eb8b15ebf04d2e4188b4479c..311c6efa8e64a24f406955373eff67e4a35ad0c0:/mr diff --git a/mr b/mr index 9501322..62c6be8 100755 --- a/mr +++ b/mr @@ -343,6 +343,11 @@ sub rcs_test { #{{{ print "mr $action: running rcs test >>$test<<\n" if $verbose; my $rcs=`$test`; chomp $rcs; + if ($rcs=~/\n/s) { + $rcs=~s/\n/, /g; + print STDERR "mr $action: found multiple possible repository types ($rcs) for $topdir$subdir\n"; + return undef; + } if (! length $rcs) { return undef; }