summaryrefslogtreecommitdiff
path: root/t/t5551-http-fetch.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-11-04 14:58:01 -0800
committerJunio C Hamano <gitster@pobox.com>2013-11-04 14:58:02 -0800
commita3a9cff0371f5dd3dd199ef227911cd812e1708d (patch)
tree80bb14edae19fa4e93a854f64ebeaf6ae8392568 /t/t5551-http-fetch.sh
parent68d5fbe285913cf6ff6c62c891539e9600030165 (diff)
parent94221d22036f36e10680c0a1e7eafb4bceeb1248 (diff)
downloadgit-a3a9cff0371f5dd3dd199ef227911cd812e1708d.tar.gz
Merge branch 'jk/wrap-perl-used-in-tests'
* jk/wrap-perl-used-in-tests: t: use perl instead of "$PERL_PATH" where applicable t: provide a perl() function which uses $PERL_PATH
Diffstat (limited to 't/t5551-http-fetch.sh')
-rwxr-xr-xt/t5551-http-fetch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5551-http-fetch.sh b/t/t5551-http-fetch.sh
index fb16833f76..afb439e09c 100755
--- a/t/t5551-http-fetch.sh
+++ b/t/t5551-http-fetch.sh
@@ -235,7 +235,7 @@ test_expect_success EXPENSIVE 'create 50,000 tags in the repo' '
done | git fast-import --export-marks=marks &&
# now assign tags to all the dangling commits we created above
- tag=$("$PERL_PATH" -e "print \"bla\" x 30") &&
+ tag=$(perl -e "print \"bla\" x 30") &&
sed -e "s|^:\([^ ]*\) \(.*\)$|\2 refs/tags/$tag-\1|" <marks >>packed-refs
)
'