aboutsummaryrefslogtreecommitdiffstats
path: root/git-request-pull.sh
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2024-12-06 14:24:42 +0100
committerJunio C Hamano <gitster@pobox.com>2024-12-07 07:52:09 +0900
commitc2a3b847eda3b51973998c1fa0a8749eb7e686b9 (patch)
treec84fb9648d1c6438e1d0ab33d912d98dfc6be6c2 /git-request-pull.sh
parentMakefile: generate doc versions via GIT-VERSION-GEN (diff)
downloadgit-c2a3b847eda3b51973998c1fa0a8749eb7e686b9.tar.gz
git-c2a3b847eda3b51973998c1fa0a8749eb7e686b9.zip
Makefile: consistently use PERL_PATH
When injecting the Perl path into our scripts we sometimes use '@PERL@' while we othertimes use '@PERL_PATH@'. Refactor the code use the latter consistently, which makes it easier to reuse the same logic for multiple scripts. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-request-pull.sh')
-rwxr-xr-xgit-request-pull.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-request-pull.sh b/git-request-pull.sh
index 10c88639e2..775ba8ea11 100755
--- a/git-request-pull.sh
+++ b/git-request-pull.sh
@@ -112,7 +112,7 @@ find_matching_ref='
}
'
-set fnord $(git ls-remote "$url" | @PERL@ -e "$find_matching_ref" "${remote:-HEAD}" "$headrev")
+set fnord $(git ls-remote "$url" | @PERL_PATH@ -e "$find_matching_ref" "${remote:-HEAD}" "$headrev")
remote_sha1=$2
ref=$3