diff options
author | Peter Kaestle <peter.kaestle@nokia.com> | 2020-01-24 11:34:04 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-01-27 10:14:00 -0800 |
commit | 3b2885ec9ba0b1328858231c9f5095e7f85d9f23 (patch) | |
tree | 72fe6c18f213372acc827d00b2cffa58917da059 /t | |
parent | t7400: add a testcase for submodule status on empty dirs (diff) | |
download | tgif-3b2885ec9ba0b1328858231c9f5095e7f85d9f23.tar.xz |
submodule: fix status of initialized but not cloned submodules
Original bash helper for "submodule status" was doing a check for
initialized but not cloned submodules and prefixed the status with
a minus sign in case no .git file or folder was found inside the
submodule directory.
This check was missed when the original port of the functionality
from bash to C was done.
Signed-off-by: Peter Kaestle <peter.kaestle@nokia.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-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 5c9acb80af..86b424f634 100755 --- a/t/t7400-submodule-basic.sh +++ b/t/t7400-submodule-basic.sh @@ -377,7 +377,7 @@ test_expect_success 'init should register submodule url in .git/config' ' test_cmp expect url ' -test_expect_failure 'status should still be "missing" after initializing' ' +test_expect_success 'status should still be "missing" after initializing' ' rm -fr init && mkdir init && git submodule status >lines && |