diff options
author | Tay Ray Chuan <rctay89@gmail.com> | 2013-09-15 19:38:21 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-09-17 18:44:29 +0200 |
commit | d5b99f35bd9102cf25ffb5d438898fa0c625defd (patch) | |
tree | b60af40325bbfd405d89085af816d7b41568cd43 /t/t7406-submodule-update.sh | |
parent | Merge branch 'maint' of git://github.com/git-l10n/git-po into maint (diff) | |
download | git-d5b99f35bd9102cf25ffb5d438898fa0c625defd.tar.xz git-d5b99f35bd9102cf25ffb5d438898fa0c625defd.zip |
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>
Diffstat (limited to 't/t7406-submodule-update.sh')
-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 && |