From 720ec6b870ba913affd0f6c01d5a61b9b2c5aadb Mon Sep 17 00:00:00 2001 From: Matthieu Moy Date: Wed, 4 Feb 2009 10:32:06 +0100 Subject: [PATCH] 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 --- t/t7001-mv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.11.4.GIT