diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-11-26 23:13:41 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-11-26 23:13:42 +0900 |
commit | ab15ccde3d7555135f3730aa5c5f303a96bdf0fb (patch) | |
tree | 42fd67356e093cf84e02fbe613449c0030be5e12 | |
parent | Git 2.20-rc1 (diff) | |
parent | t5562: fix perl path (diff) | |
download | tgif-ab15ccde3d7555135f3730aa5c5f303a96bdf0fb.tar.xz |
Merge branch 'jk/t5562-perl-path-fix'
Hotfix for test breakage on platforms whose Perl is not at
/usr/bin/perl
* jk/t5562-perl-path-fix:
t5562: fix perl path
-rwxr-xr-x | t/t5562-http-backend-content-length.sh | 1 | ||||
-rw-r--r--[-rwxr-xr-x] | t/t5562/invoke-with-content-length.pl | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/t/t5562-http-backend-content-length.sh b/t/t5562-http-backend-content-length.sh index b24d8b05a4..90d890d02f 100755 --- a/t/t5562-http-backend-content-length.sh +++ b/t/t5562-http-backend-content-length.sh @@ -31,6 +31,7 @@ test_http_env() { PATH_TRANSLATED="$PWD/.git/git-$handler_type-pack" \ GIT_HTTP_EXPORT_ALL=TRUE \ REQUEST_METHOD=POST \ + "$PERL_PATH" \ "$TEST_DIRECTORY"/t5562/invoke-with-content-length.pl \ "$request_body" git http-backend >act.out 2>act.err } diff --git a/t/t5562/invoke-with-content-length.pl b/t/t5562/invoke-with-content-length.pl index 6c2aae7692..0943474af2 100755..100644 --- a/t/t5562/invoke-with-content-length.pl +++ b/t/t5562/invoke-with-content-length.pl @@ -1,4 +1,3 @@ -#!/usr/bin/perl use 5.008; use strict; use warnings; |