aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2007-03-12 19:00:15 -0400
committerJunio C Hamano <junkio@cox.net>2007-03-12 23:40:18 -0700
commitdf91ba36b1e93053ff9353a8d5c0c8c5f754a391 (patch)
treea8e7775357a3f0b028cab30480a7d3a7f18cbd08
parent1a8f27413bfe438ce8f8aba56aa48f980f6144d1 (diff)
downloadgit-df91ba36b1e93053ff9353a8d5c0c8c5f754a391.tar.gz
git-df91ba36b1e93053ff9353a8d5c0c8c5f754a391.tar.xz
Use RUN_GIT_CMD to run push backends
If we hand run_command RUN_GIT_CMD rather than 0 it will use the execv_git_cmd path rather than execvp at the OS level. This is typically the preferred way of running another Git utility. Signed-off-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--builtin-push.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtin-push.c b/builtin-push.c
index 6ab9a28e8..70b1168fa 100644
--- a/builtin-push.c
+++ b/builtin-push.c
@@ -323,10 +323,10 @@ static int do_push(const char *repo)
int dest_refspec_nr = refspec_nr;
const char **dest_refspec = refspec;
const char *dest = uri[i];
- const char *sender = "git-send-pack";
+ const char *sender = "send-pack";
if (!prefixcmp(dest, "http://") ||
!prefixcmp(dest, "https://"))
- sender = "git-http-push";
+ sender = "http-push";
else if (thin)
argv[dest_argc++] = "--thin";
argv[0] = sender;
@@ -336,7 +336,7 @@ static int do_push(const char *repo)
argv[dest_argc] = NULL;
if (verbose)
fprintf(stderr, "Pushing to %s\n", dest);
- err = run_command_v_opt(argv, 0);
+ err = run_command_v_opt(argv, RUN_GIT_CMD);
if (!err)
continue;
switch (err) {