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>

Ralf Thielow committed Apr 13, 2017 at 18:40 UTC 35ad44cbd813f2f25fac002942c500855220718f
1 file changed +2 -2
submodule.c
+2 -2
@@ -1057,7 +1057,7 @@ int bad_to_remove_submodule(const char *path, unsigned flags)
1057 cp.dir = path;
1058 if (start_command(&cp)) {
1059 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
1060 - die(_("could not start 'git status in submodule '%s'"),
1060 + die(_("could not start 'git status' in submodule '%s'"),
1061 path);
1062 ret = -1;
1063 goto out;
@@ -1070,7 +1070,7 @@ int bad_to_remove_submodule(const char *path, unsigned flags)
1070
1071 if (finish_command(&cp)) {
1072 if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
1073 - die(_("could not run 'git status in submodule '%s'"),
1073 + die(_("could not run 'git status' in submodule '%s'"),
1074 path);
1075 ret = -1;
1076 }