diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2006-01-05 12:57:36 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-01-05 17:24:47 -0800 |
commit | 2ccd2027b012f481018b9a95929fa8df6ce1d33f (patch) | |
tree | f8487ae456818a356b7181a6870d4486bcaff8c4 | |
parent | 10ae7d86c170554bc815ec460a83b608715063c1 (diff) | |
download | git-2ccd2027b012f481018b9a95929fa8df6ce1d33f.tar.gz git-2ccd2027b012f481018b9a95929fa8df6ce1d33f.tar.xz |
trivial: check, if t/trash directory was successfully created
and was successfully entered. Otherwise git-init-db will create it directly
in the working directory (t/) which can be dangerous.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | t/test-lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index a97d259e2..7534a7620 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?" |