summaryrefslogtreecommitdiff
path: root/t/t0000-basic.sh
diff options
context:
space:
mode:
authorAlex Riesen <raa.lkml@gmail.com>2006-02-12 18:03:16 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-02-12 19:36:17 (GMT)
commitef1af9d9afe2f402ad60b054ac529c03c4b79299 (patch)
tree028decc9b7230c50424027cbfb54516047b5413d /t/t0000-basic.sh
parentd7ee090d0d425606c599327c01fcbcdb60f6b090 (diff)
downloadgit-ef1af9d9afe2f402ad60b054ac529c03c4b79299.zip
git-ef1af9d9afe2f402ad60b054ac529c03c4b79299.tar.gz
git-ef1af9d9afe2f402ad60b054ac529c03c4b79299.tar.bz2
fix "test: 2: unexpected operator" on bsd
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t0000-basic.sh')
-rwxr-xr-xt/t0000-basic.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0000-basic.sh b/t/t0000-basic.sh
index bc3e711..c339a36 100755
--- a/t/t0000-basic.sh
+++ b/t/t0000-basic.sh
@@ -33,7 +33,7 @@ then
fi
merge >/dev/null 2>/dev/null
-if test $? == 127
+if test $? = 127
then
echo >&2 'You do not seem to have "merge" installed.
Please check INSTALL document.'