diff options
author | Tay Ray Chuan <rctay89@gmail.com> | 2013-09-16 01:38:21 +0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-09-17 09:44:29 -0700 |
commit | d5b99f35bd9102cf25ffb5d438898fa0c625defd (patch) | |
tree | b60af40325bbfd405d89085af816d7b41568cd43 | |
parent | c26c472e05cbc480c8a3801d866cfc77e762c0e5 (diff) | |
download | git-d5b99f35bd9102cf25ffb5d438898fa0c625defd.tar.gz |
t7406-submodule-update: add missing &&
322bb6e (2011 Aug 11) introduced a new subshell at the end of a test
case but omitted a '&&' to join the two; fix this.
Signed-off-by: Tay Ray Chuan <rctay89@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t7406-submodule-update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7406-submodule-update.sh b/t/t7406-submodule-update.sh index b192f936bc..f0b33053ab 100755 --- a/t/t7406-submodule-update.sh +++ b/t/t7406-submodule-update.sh @@ -58,7 +58,7 @@ test_expect_success 'setup a submodule tree' ' git submodule add ../merging merging && test_tick && git commit -m "rebasing" - ) + ) && (cd super && git submodule add ../none none && test_tick && |