summaryrefslogtreecommitdiff
path: root/t/t5601-clone.sh
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2012-01-16 09:46:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-01-17 00:26:24 (GMT)
commitbafe763197cb6535e5b4956ffeaa4e26ebb10651 (patch)
tree9d212f71dd941dd9a6b72fd379c25cfa677c46cb /t/t5601-clone.sh
parent3e6e0edde20f536b28cf1dac04c7376000bfc701 (diff)
downloadgit-bafe763197cb6535e5b4956ffeaa4e26ebb10651.zip
git-bafe763197cb6535e5b4956ffeaa4e26ebb10651.tar.gz
git-bafe763197cb6535e5b4956ffeaa4e26ebb10651.tar.bz2
t5601: add missing && cascade
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5601-clone.sh')
-rwxr-xr-xt/t5601-clone.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t5601-clone.sh b/t/t5601-clone.sh
index 87ee016..49821eb 100755
--- a/t/t5601-clone.sh
+++ b/t/t5601-clone.sh
@@ -9,9 +9,9 @@ test_expect_success setup '
rm -fr .git &&
test_create_repo src &&
(
- cd src
- >file
- git add file
+ cd src &&
+ >file &&
+ git add file &&
git commit -m initial
)