diff options
author | Jens Lehmann <Jens.Lehmann@web.de> | 2010-09-01 23:28:27 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-03 09:34:32 -0700 |
commit | 4bf9dd97827bf6f475a52e8f621dad24a3db9b4c (patch) | |
tree | 7b6ea9c03957256c798f2847d61df4d146946a07 /t/t7407-submodule-foreach.sh | |
parent | t7405: cd inside subshell instead of around (diff) | |
download | tgif-4bf9dd97827bf6f475a52e8f621dad24a3db9b4c.tar.xz |
t7406 & t7407: add missing && at end of lines
Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7407-submodule-foreach.sh')
-rwxr-xr-x | t/t7407-submodule-foreach.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t7407-submodule-foreach.sh b/t/t7407-submodule-foreach.sh index db9365b645..905a8baae9 100755 --- a/t/t7407-submodule-foreach.sh +++ b/t/t7407-submodule-foreach.sh @@ -16,7 +16,7 @@ test_expect_success 'setup a submodule tree' ' echo file > file && git add file && test_tick && - git commit -m upstream + git commit -m upstream && git clone . super && git clone super submodule && ( @@ -30,7 +30,7 @@ test_expect_success 'setup a submodule tree' ' submodule.sub2 submodule.foo2 && git config -f .gitmodules --rename-section \ submodule.sub3 submodule.foo3 && - git add .gitmodules + git add .gitmodules && test_tick && git commit -m "submodules" && git submodule init sub1 && |