From: Bryan Donlan Date: Sun, 4 May 2008 05:37:56 +0000 (-0400) Subject: test-lib.sh: Fix some missing path quoting X-Git-Tag: v1.5.6-rc0~57^2~4 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=b480f5cf1a398586d94aecca5d6c9de646837d14;p=git.git test-lib.sh: Fix some missing path quoting Signed-off-by: Bryan Donlan Signed-off-by: Junio C Hamano --- diff --git a/t/test-lib.sh b/t/test-lib.sh index d7ad13b95..04e098b96 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -345,7 +345,7 @@ test_create_repo () { repo="$1" mkdir "$repo" cd "$repo" || error "Cannot setup test environment" - "$GIT_EXEC_PATH/git" init --template=$GIT_EXEC_PATH/templates/blt/ >/dev/null 2>&1 || + "$GIT_EXEC_PATH/git" init "--template=$GIT_EXEC_PATH/templates/blt/" >/dev/null 2>&1 || error "cannot run git init -- have you built things yet?" mv .git/hooks .git/hooks-disabled cd "$owd"