From e817e3e8579742312534f20c0946cd3c562cfa7c Mon Sep 17 00:00:00 2001 From: Pierre Habouzit Date: Thu, 8 Nov 2007 10:32:11 +0100 Subject: sh-setup: don't let eval output to be shell-expanded. The previous patch missed the same construct in git-clone. Signed-off-by: Pierre Habouzit --- git-clone.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git-clone.sh') diff --git a/git-clone.sh b/git-clone.sh index f216f03a77..24ad179bbd 100755 --- a/git-clone.sh +++ b/git-clone.sh @@ -36,7 +36,7 @@ usage() { exec "$0" -h } -eval `echo "$OPTIONS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?` +eval "$(echo "$OPTIONS_SPEC" | git rev-parse --parseopt -- "$@" || echo exit $?)" get_repo_base() { ( -- cgit v1.3-5-g9baa