From: Cole Stanfield Date: Mon, 13 Sep 2010 19:16:57 +0000 (-0600) Subject: Fixing eval syntax error. X-Git-Tag: v1.7.11-rc0~176^2~9 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/11f1511e7650a78709d0d7198bb150cd5392d9d1 Fixing eval syntax error. --- diff --git a/git-subtree.sh b/git-subtree.sh index 781eef3783..ce94d363dc 100755 --- a/git-subtree.sh +++ b/git-subtree.sh @@ -28,7 +28,7 @@ rejoin merge the new branch back into HEAD options for 'add', 'merge', 'pull' and 'push' squash merge subtree changes as a single commit " -eval $(echo "$OPTS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?) +eval "$(echo "$OPTS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?)" PATH=$PATH:$(git --exec-path) . git-sh-setup