From 11f1511e7650a78709d0d7198bb150cd5392d9d1 Mon Sep 17 00:00:00 2001 From: Cole Stanfield Date: Mon, 13 Sep 2010 13:16:57 -0600 Subject: [PATCH] Fixing eval syntax error. --- git-subtree.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-subtree.sh b/git-subtree.sh index 781eef378..ce94d363d 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 -- 2.26.2