Subject: [PATCH] Check, if trash directory was successfully created and was entered. Otherwise git-init-db will create it directly in the working directory which can be dangerous with all these nasty rm's in the tests Signed-off-by: Alex Riesen --- t/test-lib.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 01d3f8fc7499a2dd5e21513187de7d73af080533 diff --git a/t/test-lib.sh b/t/test-lib.sh index a97d259..7534a76 100755 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -195,7 +195,7 @@ test -d ../templates/blt || { test=trash rm -fr "$test" mkdir "$test" -cd "$test" +cd "$test" || error "Cannot setup test environment" "$GIT_EXEC_PATH/git" init-db --template=../../templates/blt/ 2>/dev/null || error "cannot run git init-db -- have you built things yet?" -- 1.0.GIT