summaryrefslogtreecommitdiff
path: root/git.sh
diff options
context:
space:
mode:
authorPeter Anvin <hpa@tazenda.sc.orionmulti.com>2005-09-28 23:56:08 (GMT)
committerPeter Anvin <hpa@tazenda.sc.orionmulti.com>2005-09-28 23:56:08 (GMT)
commit918e723204651252e5a823481cc8450e498a45f9 (patch)
tree6920cb8dd1f8254865d2f47b96efae65a0009de5 /git.sh
parent296fdc53bdd75147121aa290b4de0eeb3b4e7074 (diff)
downloadgit-918e723204651252e5a823481cc8450e498a45f9.zip
git-918e723204651252e5a823481cc8450e498a45f9.tar.gz
git-918e723204651252e5a823481cc8450e498a45f9.tar.bz2
For the benefit of Cygwin, test for git-cmd.exe
Diffstat (limited to 'git.sh')
-rwxr-xr-xgit.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/git.sh b/git.sh
index b67a164..ea710aa 100755
--- a/git.sh
+++ b/git.sh
@@ -11,7 +11,10 @@ case "$#" in
echo "git version @@GIT_VERSION@@"
exit 0 ;;
esac
+
test -x $path/git-$cmd && exec $path/git-$cmd "$@" ;;
+
+ # In case we're running on Cygwin...
test -x $path/git-$cmd.exe && exec $path/git-$cmd.exe "$@" ;;
esac