We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 904977d commit 9981f77Copy full SHA for 9981f77
transport-helper.c
@@ -130,9 +130,9 @@ static struct child_process *get_helper(struct transport *transport)
130
helper->in = -1;
131
helper->out = -1;
132
helper->err = 0;
133
- argv_array_pushf(&helper->args, "remote-%s", data->name);
134
- argv_array_push(&helper->args, transport->remote->name);
135
- argv_array_push(&helper->args, remove_ext_force(transport->url));
+ strvec_pushf(&helper->args, "remote-%s", data->name);
+ strvec_push(&helper->args, transport->remote->name);
+ strvec_push(&helper->args, remove_ext_force(transport->url));
136
helper->git_cmd = 1;
137
helper->silent_exec_failure = 1;
138
0 commit comments