1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-10 19:16:14 +02:00

Merge branch 'sb/submodule-rm-absorb'

Error message fix.

* sb/submodule-rm-absorb:
  submodule.c: add missing ' in error messages
This commit is contained in:
Junio C Hamano 2017-04-19 21:37:17 -07:00
commit a06380be54

View File

@ -1329,7 +1329,7 @@ int bad_to_remove_submodule(const char *path, unsigned flags)
cp.dir = path;
if (start_command(&cp)) {
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);
ret = -1;
goto out;
@ -1342,7 +1342,7 @@ int bad_to_remove_submodule(const char *path, unsigned flags)
if (finish_command(&cp)) {
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);
ret = -1;
}