[PATCH] git_connect: use use_shell instead of explicit "sh", "-c"
From: Johannes Sixt <hidden>
Date: 2016-06-15 22:48:06
From: Johannes Sixt <redacted> This is a followup to ac0ba18 (run-command: convert simple callsites to use_shell, 2009-12-30), for consistency. Signed-off-by: Johannes Sixt <redacted> --- Jeff, is there a reason that this was not part of the original patch? -- Hannes connect.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/connect.c b/connect.c
index db965c9..3a12562 100644
--- a/connect.c
+++ b/connect.c@@ -613,8 +613,7 @@ struct child_process *git_connect(int fd[2], constchar *url_orig, NULL }; conn->env = env; - *arg++ = "sh"; - *arg++ = "-c"; + conn->use_shell = 1; } *arg++ = cmd.buf; *arg = NULL; -- 1.7.0.rc0.39.g31c5d