diff options
author | Ralf Thielow <ralf.thielow@gmail.com> | 2017-04-13 18:40:45 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-04-13 17:59:21 -0700 |
commit | 35ad44cbd813f2f25fac002942c500855220718f (patch) | |
tree | 7ea2831436672b8877d59539610ba0d3754a6825 /submodule.c | |
parent | 55856a35b20dae2499d4e0b23551c7ba9a33baf2 (diff) | |
download | git-35ad44cbd813f2f25fac002942c500855220718f.tar.gz |
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>
Diffstat (limited to 'submodule.c')
-rw-r--r-- | submodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/submodule.c b/submodule.c index 1cc04d24e5..ec971ae186 100644 --- a/submodule.c +++ b/submodule.c @@ -1057,7 +1057,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; @@ -1070,7 +1070,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; } |