rev-list: disable object/refname ambiguity check with --stdin
[gitweb.git] / t / lib-git-svn.sh
index 199f22c231b5ac1479929a89cdf988ac7aff4268..b0ec12ff6cbcdd7352b764db32bc34340b37fc8a 100644 (file)
@@ -29,7 +29,7 @@ export svnrepo
 svnconf=$PWD/svnconf
 export svnconf
 
-"$PERL_PATH" -w -e "
+perl -w -e "
 use SVN::Core;
 use SVN::Repos;
 \$SVN::Core::VERSION gt '1.1.0' or exit(42);
@@ -146,9 +146,9 @@ stop_httpd () {
 }
 
 convert_to_rev_db () {
-       "$PERL_PATH" -w -- - "$@" <<\EOF
+       perl -w -- - "$@" <<\EOF
 use strict;
-@ARGV == 2 or die "Usage: convert_to_rev_db <input> <output>";
+@ARGV == 2 or die "usage: convert_to_rev_db <input> <output>";
 open my $wr, '+>', $ARGV[1] or die "$!: couldn't open: $ARGV[1]";
 open my $rd, '<', $ARGV[0] or die "$!: couldn't open: $ARGV[0]";
 my $size = (stat($rd))[7];