Skip to content

Commit

Permalink
Missing && in t/t7001.sh.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Matthieu Moy authored and Junio C Hamano committed Feb 4, 2009
1 parent 7a85f6a commit 720ec6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/t7001-mv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 720ec6b

Please sign in to comment.