transport-helper.c: trivial fix of error message

Mark --force as option rather than variable names Signed-off-by: Alexander Shopov <ash@kambanaria.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Alexander Shopov committed Feb 16, 2024 at 11:15 UTC 3a12749b50eb012b2828856fdf864fab67269cfd
1 file changed +1 -1
transport-helper.c
+1 -1
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);