diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2006-02-12 19:03:16 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-12 11:36:17 -0800 |
commit | ef1af9d9afe2f402ad60b054ac529c03c4b79299 (patch) | |
tree | 028decc9b7230c50424027cbfb54516047b5413d /t/t0000-basic.sh | |
parent | d7ee090d0d425606c599327c01fcbcdb60f6b090 (diff) | |
download | git-ef1af9d9afe2f402ad60b054ac529c03c4b79299.tar.gz |
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-x | t/t0000-basic.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0000-basic.sh b/t/t0000-basic.sh index bc3e711a52..c339a366f4 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.' |