mirror of
https://github.com/git/git
synced 2024-10-30 13:20:15 +00:00
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>
This commit is contained in:
parent
7a85f6ae88
commit
720ec6b870
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ test_expect_success \
|
||||||
git mv -k untracked1 untracked2 path0 &&
|
git mv -k untracked1 untracked2 path0 &&
|
||||||
test -f untracked1 &&
|
test -f untracked1 &&
|
||||||
test -f untracked2 &&
|
test -f untracked2 &&
|
||||||
test ! -f path0/untracked1
|
test ! -f path0/untracked1 &&
|
||||||
test ! -f path0/untracked2'
|
test ! -f path0/untracked2'
|
||||||
|
|
||||||
# clean up the mess in case bad things happen
|
# clean up the mess in case bad things happen
|
||||||
|
|
Loading…
Reference in a new issue