diff options
author | Michal Rokos <michal.rokos@nextsoft.cz> | 2006-07-08 17:32:04 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-08 11:35:20 -0700 |
commit | d9bffc08fd2cec626e3a390fa4cc47587a8c7f9e (patch) | |
tree | 3ba87a20327aedec6fc29fd5db678d97e68c118f /git-bisect.sh | |
parent | 6e959ab05a0a626f6805581a04dfc4e220054c02 (diff) | |
download | git-d9bffc08fd2cec626e3a390fa4cc47587a8c7f9e.tar.gz |
Using 'perl' in *.sh
Some GIT's shell script are using bare 'perl' for perl invocation.
Use @@PERL@@ symbol and replace it with PERL_PATH_SQ everywhere.
Signed-off-by: Michal Rokos <michal.rokos@nextsoft.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-bisect.sh')
-rwxr-xr-x | git-bisect.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-bisect.sh b/git-bisect.sh index 03df1433ef..06a8d26945 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -13,7 +13,7 @@ git bisect log show bisect log.' . git-sh-setup sq() { - perl -e ' + @@PERL@@ -e ' for (@ARGV) { s/'\''/'\'\\\\\'\''/g; print " '\''$_'\''"; |