summaryrefslogtreecommitdiff
path: root/t/t5550-http-fetch.sh
diff options
context:
space:
mode:
authorTay Ray Chuan <rctay89@gmail.com>2010-11-25 08:21:02 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-11-26 22:50:44 (GMT)
commit2bcd9ec5018ad259e5b6803dccf0c7bc121bd9ea (patch)
tree83dd23a9e2ada9b4536f3182a740ebc785ff86fa /t/t5550-http-fetch.sh
parent1c7d402b3e1e9d7e50abfbfb18c88bc79be468ea (diff)
downloadgit-2bcd9ec5018ad259e5b6803dccf0c7bc121bd9ea.zip
git-2bcd9ec5018ad259e5b6803dccf0c7bc121bd9ea.tar.gz
git-2bcd9ec5018ad259e5b6803dccf0c7bc121bd9ea.tar.bz2
t5550-http-fetch: add missing '&&'
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5550-http-fetch.sh')
-rwxr-xr-xt/t5550-http-fetch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5550-http-fetch.sh b/t/t5550-http-fetch.sh
index 2fb48d0..39f7b7c 100755
--- a/t/t5550-http-fetch.sh
+++ b/t/t5550-http-fetch.sh
@@ -37,7 +37,7 @@ test_expect_success 'clone http repository' '
test_expect_success 'fetch changes via http' '
echo content >>file &&
git commit -a -m two &&
- git push public
+ git push public &&
(cd clone && git pull) &&
test_cmp file clone/file
'