diff options
author | Tay Ray Chuan <rctay89@gmail.com> | 2010-11-25 16:21:02 +0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-11-26 14:50:44 -0800 |
commit | 2bcd9ec5018ad259e5b6803dccf0c7bc121bd9ea (patch) | |
tree | 83dd23a9e2ada9b4536f3182a740ebc785ff86fa | |
parent | clean: remove redundant variable baselen (diff) | |
download | tgif-2bcd9ec5018ad259e5b6803dccf0c7bc121bd9ea.tar.xz |
t5550-http-fetch: add missing '&&'
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t5550-http-fetch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5550-http-fetch.sh b/t/t5550-http-fetch.sh index 2fb48d09ed..39f7b7c20a 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 ' |