From: Jens Lehmann Date: Wed, 18 Aug 2010 21:20:33 +0000 (+0200) Subject: t7403: add missing &&'s X-Git-Tag: v1.7.2.3~16 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0eb032d86c99ac8f23435ad5ea9f2b83f1be744f;p=git.git t7403: add missing &&'s Signed-off-by: Jens Lehmann Signed-off-by: Junio C Hamano --- diff --git a/t/t7403-submodule-sync.sh b/t/t7403-submodule-sync.sh index 753875648..bade2179b 100755 --- a/t/t7403-submodule-sync.sh +++ b/t/t7403-submodule-sync.sh @@ -14,7 +14,7 @@ test_expect_success setup ' echo file > file && git add file && test_tick && - git commit -m upstream + git commit -m upstream && git clone . super && git clone super submodule && (cd super && @@ -42,7 +42,7 @@ test_expect_success 'change submodule url' ' ) && mv submodule moved-submodule && (cd super && - git config -f .gitmodules submodule.submodule.url ../moved-submodule + git config -f .gitmodules submodule.submodule.url ../moved-submodule && test_tick && git commit -a -m moved-submodule )