Skip to content

Commit 720ec6b

Browse files
moygitster
authored andcommitted
Missing && in t/t7001.sh.
Without this, the exit status is only the one of the last line. Signed-off-by: Matthieu Moy <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 7a85f6a commit 720ec6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/t7001-mv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ test_expect_success \
5555
git mv -k untracked1 untracked2 path0 &&
5656
test -f untracked1 &&
5757
test -f untracked2 &&
58-
test ! -f path0/untracked1
58+
test ! -f path0/untracked1 &&
5959
test ! -f path0/untracked2'
6060

6161
# clean up the mess in case bad things happen

0 commit comments

Comments
 (0)