submodule.c: add missing ' in error messages
Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com> Acked-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
55856a35b2
commit
35ad44cbd8
@ -1057,7 +1057,7 @@ int bad_to_remove_submodule(const char *path, unsigned flags)
|
|||||||
cp.dir = path;
|
cp.dir = path;
|
||||||
if (start_command(&cp)) {
|
if (start_command(&cp)) {
|
||||||
if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
|
if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
|
||||||
die(_("could not start 'git status in submodule '%s'"),
|
die(_("could not start 'git status' in submodule '%s'"),
|
||||||
path);
|
path);
|
||||||
ret = -1;
|
ret = -1;
|
||||||
goto out;
|
goto out;
|
||||||
@ -1070,7 +1070,7 @@ int bad_to_remove_submodule(const char *path, unsigned flags)
|
|||||||
|
|
||||||
if (finish_command(&cp)) {
|
if (finish_command(&cp)) {
|
||||||
if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
|
if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
|
||||||
die(_("could not run 'git status in submodule '%s'"),
|
die(_("could not run 'git status' in submodule '%s'"),
|
||||||
path);
|
path);
|
||||||
ret = -1;
|
ret = -1;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user