aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJens Lehmann <Jens.Lehmann@web.de>2010-08-18 23:20:33 +0200
committerJunio C Hamano <gitster@pobox.com>2010-08-21 23:00:31 -0700
commit0eb032d86c99ac8f23435ad5ea9f2b83f1be744f (patch)
tree45cd496e296083a32f67654dc27a85303b667afc /t
parentae3f7218b9829ac4b7031f4a2735ab391ca69b3c (diff)
downloadgit-0eb032d86c99ac8f23435ad5ea9f2b83f1be744f.tar.gz
git-0eb032d86c99ac8f23435ad5ea9f2b83f1be744f.tar.xz
t7403: add missing &&'s
Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t7403-submodule-sync.sh4
1 files changed, 2 insertions, 2 deletions
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
)