summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Moy <Matthieu.Moy@imag.fr>2009-02-04 09:32:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-02-04 19:04:44 (GMT)
commit720ec6b870ba913affd0f6c01d5a61b9b2c5aadb (patch)
tree62c45439b55fe7ecdbec42630da68f286ae9e356
parent7a85f6ae88be5937c32a7b61601a40a02c03fb3f (diff)
downloadgit-720ec6b870ba913affd0f6c01d5a61b9b2c5aadb.zip
git-720ec6b870ba913affd0f6c01d5a61b9b2c5aadb.tar.gz
git-720ec6b870ba913affd0f6c01d5a61b9b2c5aadb.tar.bz2
Missing && in t/t7001.sh.
Without this, the exit status is only the one of the last line. Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xt/t7001-mv.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7001-mv.sh b/t/t7001-mv.sh
index 19493c8..539effe 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