diff options
author | Matthieu Moy <Matthieu.Moy@imag.fr> | 2009-02-04 10:32:06 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-04 11:04:44 -0800 |
commit | 720ec6b870ba913affd0f6c01d5a61b9b2c5aadb (patch) | |
tree | 62c45439b55fe7ecdbec42630da68f286ae9e356 | |
parent | 7a85f6ae88be5937c32a7b61601a40a02c03fb3f (diff) | |
download | git-720ec6b870ba913affd0f6c01d5a61b9b2c5aadb.tar.gz git-720ec6b870ba913affd0f6c01d5a61b9b2c5aadb.tar.xz |
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-x | t/t7001-mv.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7001-mv.sh b/t/t7001-mv.sh index 19493c805..539effe69 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 |