diff options
| author | Stefan Beller <sbeller@google.com> | 2016-05-02 15:24:02 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2016-05-03 09:16:41 -0700 |
| commit | 14544dd215360343d9cc70c3675b9479c871a1ae (patch) | |
| tree | 37d861644ce25966ddb637caf2e992b374eacbb4 /t/t7400-submodule-basic.sh | |
| parent | submodule: fix regression for deinit without submodules (diff) | |
| download | git-14544dd215360343d9cc70c3675b9479c871a1ae.tar.gz git-14544dd215360343d9cc70c3675b9479c871a1ae.zip | |
submodule deinit test: fix broken && chain in subshell
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7400-submodule-basic.sh')
| -rwxr-xr-x | t/t7400-submodule-basic.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 . ) ' |
