Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
submodule.c: add missing ' in error messages
author
Ralf Thielow
<ralf.thielow@gmail.com>
Thu, 13 Apr 2017 16:40:45 +0000
(18:40 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Fri, 14 Apr 2017 00:59:21 +0000
(17:59 -0700)
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>
submodule.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
55856a3
)
diff --git
a/submodule.c
b/submodule.c
index 1cc04d24e5766f6bb895014c9321b938fd6f2d43..ec971ae18646fb3160fe53ef44f2b682c4a82ef1 100644
(file)
--- 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;
}