From: Junio C Hamano Date: Wed, 26 Aug 2020 19:46:49 +0000 (-0700) Subject: transport-helper: do not run git-remote-ext etc. in dashed form X-Git-Tag: v2.29.0-rc0~102^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=675df192c5f;p=thirdparty%2Fgit.git transport-helper: do not run git-remote-ext etc. in dashed form Running it as "git remote-ext" and letting "git" dispatch to "remote-ext" would just be fine and is more idiomatic. Signed-off-by: Junio C Hamano --- diff --git a/transport-helper.c b/transport-helper.c index defafbf4c1..c52c99d829 100644 --- a/transport-helper.c +++ b/transport-helper.c @@ -128,10 +128,10 @@ static struct child_process *get_helper(struct transport *transport) helper->in = -1; helper->out = -1; helper->err = 0; - strvec_pushf(&helper->args, "git-remote-%s", data->name); + strvec_pushf(&helper->args, "remote-%s", data->name); strvec_push(&helper->args, transport->remote->name); strvec_push(&helper->args, remove_ext_force(transport->url)); - helper->git_cmd = 0; + helper->git_cmd = 1; helper->silent_exec_failure = 1; if (have_git_dir())