]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t5550-http-fetch: add missing '&&'
authorTay Ray Chuan <rctay89@gmail.com>
Thu, 25 Nov 2010 08:21:02 +0000 (16:21 +0800)
committerJunio C Hamano <gitster@pobox.com>
Fri, 26 Nov 2010 22:50:44 +0000 (14:50 -0800)
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5550-http-fetch.sh

index 2fb48d09edb47129d9cea8b9686e46a6d8f35615..39f7b7c20ae387525bd427017cd9b0f553a07e44 100755 (executable)
@@ -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
 '