aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xgit.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/git.sh b/git.sh
index dc383edde..1c73ca1c2 100755
--- a/git.sh
+++ b/git.sh
@@ -1,7 +1,7 @@
#!/bin/sh
cmd=
-path=$(dirname $0)
+path=$(dirname "$0")
case "$#" in
0) ;;
*) cmd="$1"
@@ -11,7 +11,7 @@ case "$#" in
echo "git version @@GIT_VERSION@@"
exit 0 ;;
esac
- test -x $path/git-$cmd && exec $path/git-$cmd "$@" ;;
+ test -x "$path/git-$cmd" && exec "$path/git-$cmd" "$@" ;;
esac
echo "Usage: git COMMAND [OPTIONS] [TARGET]"