Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
help.autocorrect: do not run a command if the command given is junk
[gitweb.git]
/
t
/
t5701-clone-local.sh
diff --git
a/t/t5701-clone-local.sh
b/t/t5701-clone-local.sh
index f26b511c3ec7bf46f3fe9357cfdec9f95a169a14..19b5c0d552fa8b4665b5e396833264e258365b28 100755
(executable)
--- a/
t/t5701-clone-local.sh
+++ b/
t/t5701-clone-local.sh
@@
-138,8
+138,8
@@
test_expect_success 'clone empty repository, and then push should not segfault.'
mkdir empty &&
(cd empty && git init) &&
git clone empty empty-clone &&
- cd empty-clone &&
- test_must_fail git push
+
(
cd empty-clone &&
+ test_must_fail git push
)
'
test_done