From: Matthieu Moy Date: Wed, 4 Feb 2009 09:32:06 +0000 (+0100) Subject: Missing && in t/t7001.sh. X-Git-Tag: v1.6.1.3~10^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/720ec6b870ba913affd0f6c01d5a61b9b2c5aadb Missing && in t/t7001.sh. Without this, the exit status is only the one of the last line. Signed-off-by: Matthieu Moy Signed-off-by: Junio C Hamano --- diff --git a/t/t7001-mv.sh b/t/t7001-mv.sh index 19493c8052..539effe694 100755 --- a/t/t7001-mv.sh +++ b/t/t7001-mv.sh @@ -55,7 +55,7 @@ test_expect_success \ git mv -k untracked1 untracked2 path0 && test -f untracked1 && test -f untracked2 && - test ! -f path0/untracked1 + test ! -f path0/untracked1 && test ! -f path0/untracked2' # clean up the mess in case bad things happen