diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-12-19 09:18:09 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-19 01:14:59 -0800 |
commit | 8683a45d66967b0969516a2b72cdbf136c2064a2 (patch) | |
tree | ff543e98be6e36f0960660d4543b5f036917eb58 /t | |
parent | 171e800b374c98dd703e906bd9955b2b0410cabe (diff) | |
download | git-8683a45d66967b0969516a2b72cdbf136c2064a2.tar.gz git-8683a45d66967b0969516a2b72cdbf136c2064a2.tar.xz |
Introduce GIT_TEMPLATE_DIR
Instead of passing --template explicitely to init-db and clone, you can
just set the environment variable GIT_TEMPLATE_DIR.
Also make use of it in the tests, to make sure that the templates are
copied.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't')
-rwxr-xr-x | t/test-lib.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index ac7be769b..f0f9cd6be 100755 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -208,8 +208,9 @@ test_done () { # t/ subdirectory and are run in trash subdirectory. PATH=$(pwd)/..:$PATH GIT_EXEC_PATH=$(pwd)/.. +GIT_TEMPLATE_DIR=$(pwd)/../templates/blt HOME=$(pwd)/trash -export PATH GIT_EXEC_PATH HOME +export PATH GIT_EXEC_PATH GIT_TEMPLATE_DIR HOME GITPERLLIB=$(pwd)/../perl/blib/lib:$(pwd)/../perl/blib/arch/auto/Git export GITPERLLIB |