From: Stefan Beller Date: Mon, 2 May 2016 22:24:02 +0000 (-0700) Subject: submodule deinit test: fix broken && chain in subshell X-Git-Tag: v2.9.0-rc0~47^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=14544dd215360343d9cc70c3675b9479c871a1ae;p=thirdparty%2Fgit.git submodule deinit test: fix broken && chain in subshell Signed-off-by: Stefan Beller Signed-off-by: Junio C Hamano --- diff --git a/t/t7400-submodule-basic.sh b/t/t7400-submodule-basic.sh index e1abd19230..cf06b2f8c3 100755 --- a/t/t7400-submodule-basic.sh +++ b/t/t7400-submodule-basic.sh @@ -857,7 +857,7 @@ test_expect_success 'submodule deinit works on repository without submodules' ' git init && >file && git add file && - git commit -m "repo should not be empty" + git commit -m "repo should not be empty" && git submodule deinit . ) '