Skip to content

Commit 35ad44c

Browse files
ralfthgitster
authored andcommitted
submodule.c: add missing ' in error messages
Signed-off-by: Ralf Thielow <[email protected]> Acked-by: Stefan Beller <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 55856a3 commit 35ad44c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

submodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ int bad_to_remove_submodule(const char *path, unsigned flags)
10571057
cp.dir = path;
10581058
if (start_command(&cp)) {
10591059
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'"),
10611061
path);
10621062
ret = -1;
10631063
goto out;
@@ -1070,7 +1070,7 @@ int bad_to_remove_submodule(const char *path, unsigned flags)
10701070

10711071
if (finish_command(&cp)) {
10721072
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'"),
10741074
path);
10751075
ret = -1;
10761076
}

0 commit comments

Comments
 (0)