diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-02-14 12:42:32 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-02-14 12:42:32 -0800 |
commit | 52d620fdc670fb11101d6fe31d6a158e27c6d979 (patch) | |
tree | dc8d429de59b69ec24bbe2c4e417018f71979dbb | |
parent | Merge branch 'jb/parse-options-message-fix' into maint (diff) | |
parent | submodule: add newline on invalid submodule error (diff) | |
download | tgif-52d620fdc670fb11101d6fe31d6a158e27c6d979.tar.xz |
Merge branch 'es/submodule-fetch-message-fix' into maint
Error message fix.
* es/submodule-fetch-message-fix:
submodule: add newline on invalid submodule error
-rw-r--r-- | submodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/submodule.c b/submodule.c index 9430db8ffc..6b867445f0 100644 --- a/submodule.c +++ b/submodule.c @@ -1478,7 +1478,7 @@ static int get_next_submodule(struct child_process *cp, !is_empty_dir(ce->name)) { spf->result = 1; strbuf_addf(err, - _("Could not access submodule '%s'"), + _("Could not access submodule '%s'\n"), ce->name); } } |