Skip to content

Commit 9981f77

Browse files
committed
fixup! transport-helper: prefer Git's builtins over dashed form
Signed-off-by: Derrick Stolee <[email protected]>
1 parent 904977d commit 9981f77

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

transport-helper.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ static struct child_process *get_helper(struct transport *transport)
130130
helper->in = -1;
131131
helper->out = -1;
132132
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));
133+
strvec_pushf(&helper->args, "remote-%s", data->name);
134+
strvec_push(&helper->args, transport->remote->name);
135+
strvec_push(&helper->args, remove_ext_force(transport->url));
136136
helper->git_cmd = 1;
137137
helper->silent_exec_failure = 1;
138138

0 commit comments

Comments
 (0)