Fix "test: unexpected operator" on bsd
authorJunio C Hamano <junkio@cox.net>
Sun, 12 Feb 2006 21:13:12 +0000 (13:13 -0800)
committerJunio C Hamano <junkio@cox.net>
Sun, 12 Feb 2006 21:13:33 +0000 (13:13 -0800)
This fixes the same issue as a previous fix by Alex Riesen does.

Signed-off-by: Junio C Hamano <junkio@cox.net>
git-sh-setup.sh

index 157c7e4..025ef2d 100755 (executable)
@@ -42,7 +42,7 @@ then
 
        # Make sure we are in a valid repository of a vintage we understand.
        GIT_DIR="$GIT_DIR" git repo-config --get core.nosuch >/dev/null
-       if test $? == 128
+       if test $? = 128
        then
            exit
        fi