* [PATCH] submodule.c: Add missing quotation marks
@ 2017-02-17 23:04 Phillip Sz
2017-02-17 23:07 ` Brandon Williams
0 siblings, 1 reply; 2+ messages in thread
From: Phillip Sz @ 2017-02-17 23:04 UTC (permalink / raw)
To: git; +Cc: sbeller, Phillip Sz
Hi,
just found this while translating, sorry if this is intended.
Best regards,
Phillip
---
submodule.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/submodule.c b/submodule.c
index 3b98766a6..b064ed080 100644
--- a/submodule.c
+++ b/submodule.c
@@ -1181,7 +1181,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;
@@ -1194,7 +1194,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;
}
--
2.11.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] submodule.c: Add missing quotation marks
2017-02-17 23:04 [PATCH] submodule.c: Add missing quotation marks Phillip Sz
@ 2017-02-17 23:07 ` Brandon Williams
0 siblings, 0 replies; 2+ messages in thread
From: Brandon Williams @ 2017-02-17 23:07 UTC (permalink / raw)
To: Phillip Sz; +Cc: git, sbeller
On 02/18, Phillip Sz wrote:
> Hi,
>
> just found this while translating, sorry if this is intended.
>
> Best regards,
>
> Phillip
Definitely not intended. Thanks for catching that.
> ---
> submodule.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/submodule.c b/submodule.c
> index 3b98766a6..b064ed080 100644
> --- a/submodule.c
> +++ b/submodule.c
> @@ -1181,7 +1181,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;
> @@ -1194,7 +1194,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;
> }
> --
> 2.11.1
>
--
Brandon Williams
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-02-17 23:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-17 23:04 [PATCH] submodule.c: Add missing quotation marks Phillip Sz
2017-02-17 23:07 ` Brandon Williams
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).