From: Alexander Shopov Date: Fri, 16 Feb 2024 10:15:34 +0000 (+0100) Subject: transport-helper.c: trivial fix of error message X-Git-Url: https://www.git.kevux.org/?a=commitdiff_plain;h=3a12749b50eb012b2828856fdf864fab67269cfd;p=rit transport-helper.c: trivial fix of error message Mark --force as option rather than variable names Signed-off-by: Alexander Shopov Signed-off-by: Junio C Hamano --- diff --git a/transport-helper.c b/transport-helper.c index e34a8f47cf..7014b9ad70 100644 --- a/transport-helper.c +++ b/transport-helper.c @@ -1072,7 +1072,7 @@ static int push_refs_with_export(struct transport *transport, set_common_push_options(transport, data->name, flags); if (flags & TRANSPORT_PUSH_FORCE) { if (set_helper_option(transport, "force", "true") != 0) - warning(_("helper %s does not support 'force'"), data->name); + warning(_("helper %s does not support '--force'"), data->name); } helper = get_helper(transport);