diff options
author | Scott R Parish <srp@srparish.net> | 2007-10-27 01:36:55 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-10-29 20:51:37 -0700 |
commit | e8f5d87056093f40a271f89c2c91d1a7025e2440 (patch) | |
tree | 68de0fb7585af8fc591f36204b6301c31bf5c511 /shell.c | |
parent | 1eb056905a2956ca9fabd2edcce05c0a29ce64b1 (diff) | |
download | git-e8f5d87056093f40a271f89c2c91d1a7025e2440.tar.gz git-e8f5d87056093f40a271f89c2c91d1a7025e2440.tar.xz |
shell should call the new setup_path() to setup $PATH
Shell currently does its own manual thing for setting up the $PATH;
it can now call setup_path().
Signed-off-by: Scott R Parish <srp@srparish.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'shell.c')
-rw-r--r-- | shell.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -24,17 +24,11 @@ static int do_cvs_cmd(const char *me, char *arg) const char *cvsserver_argv[3] = { "cvsserver", "server", NULL }; - const char *oldpath = getenv("PATH"); - struct strbuf newpath = STRBUF_INIT; if (!arg || strcmp(arg, "server")) die("git-cvsserver only handles server: %s", arg); - strbuf_addstr(&newpath, git_exec_path()); - strbuf_addch(&newpath, ':'); - strbuf_addstr(&newpath, oldpath); - - setenv("PATH", strbuf_detach(&newpath, NULL), 1); + setup_path(NULL); return execv_git_cmd(cvsserver_argv); } |