diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-12-05 21:58:21 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-12-05 21:58:21 +0100 |
commit | 219ea0e79d1e5cdb5f1133aff70fe4e5737dd59d (patch) | |
tree | 0fb28a4a761e807bf7864e67bddd9236d4e4d866 /git-request-pull.sh | |
parent | Merge branch 'jh/loose-object-dirs-creation-race' (diff) | |
parent | use @@PERL@@ in built scripts (diff) | |
download | git-219ea0e79d1e5cdb5f1133aff70fe4e5737dd59d.tar.xz git-219ea0e79d1e5cdb5f1133aff70fe4e5737dd59d.zip |
Merge branch 'jk/replace-perl-in-built-scripts'
* jk/replace-perl-in-built-scripts:
use @@PERL@@ in built scripts
Diffstat (limited to 'git-request-pull.sh')
-rwxr-xr-x | git-request-pull.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-request-pull.sh b/git-request-pull.sh index ebf1269d29..fe21d5db63 100755 --- a/git-request-pull.sh +++ b/git-request-pull.sh @@ -106,7 +106,7 @@ find_matching_ref=' } ' -ref=$(git ls-remote "$url" | perl -e "$find_matching_ref" "$head" "$headrev" "$tag_name") +ref=$(git ls-remote "$url" | @@PERL@@ -e "$find_matching_ref" "$head" "$headrev" "$tag_name") url=$(git ls-remote --get-url "$url") |