Code

t/test-lib.sh: Protect ourselves from common misconfiguration
authorJunio C Hamano <junkio@cox.net>
Tue, 24 Apr 2007 18:21:47 +0000 (11:21 -0700)
committerJunio C Hamano <junkio@cox.net>
Tue, 24 Apr 2007 18:21:47 +0000 (11:21 -0700)
that exports CDPATH to the environment

Signed-off-by: Junio C Hamano <junkio@cox.net>
t/test-lib.sh

index c0754747fbc250274f069901703159ffd23faf86..f2c6bd3b01d39b8cc71bc624e0eaddc0681ae25e 100644 (file)
@@ -36,6 +36,10 @@ export GIT_AUTHOR_EMAIL GIT_AUTHOR_NAME
 export GIT_COMMITTER_EMAIL GIT_COMMITTER_NAME
 export EDITOR VISUAL
 
+# Protect ourselves from common misconfiguration to export
+# CDPATH into the environment
+unset CDPATH
+
 case $(echo $GIT_TRACE |tr "[A-Z]" "[a-z]") in
        1|2|true)
                echo "* warning: Some tests will not work if GIT_TRACE" \