Skip to content

Commit a06380b

Browse files
committed
Merge branch 'sb/submodule-rm-absorb'
Error message fix. * sb/submodule-rm-absorb: submodule.c: add missing ' in error messages
2 parents 7203baf + 35ad44c commit a06380b

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
@@ -1329,7 +1329,7 @@ int bad_to_remove_submodule(const char *path, unsigned flags)
13291329
cp.dir = path;
13301330
if (start_command(&cp)) {
13311331
if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
1332-
die(_("could not start 'git status in submodule '%s'"),
1332+
die(_("could not start 'git status' in submodule '%s'"),
13331333
path);
13341334
ret = -1;
13351335
goto out;
@@ -1342,7 +1342,7 @@ int bad_to_remove_submodule(const char *path, unsigned flags)
13421342

13431343
if (finish_command(&cp)) {
13441344
if (flags & SUBMODULE_REMOVAL_DIE_ON_ERROR)
1345-
die(_("could not run 'git status in submodule '%s'"),
1345+
die(_("could not run 'git status' in submodule '%s'"),
13461346
path);
13471347
ret = -1;
13481348
}

0 commit comments

Comments
 (0)