aboutsummaryrefslogtreecommitdiff
path: root/git.c
diff options
context:
space:
mode:
authorDavid Aguilar <davvid@gmail.com>2011-05-25 20:37:13 -0700
committerJunio C Hamano <gitster@pobox.com>2011-05-26 15:05:52 -0700
commit26b052515d1714918a7da4bfcdaaca37dc4db2e0 (patch)
tree162514fe3e3bb9a737d4109345f01e5107ecd88d /git.c
parent1f5d271f5e8f7b1e2a5b296ff43ca4087eb08244 (diff)
downloadgit-26b052515d1714918a7da4bfcdaaca37dc4db2e0.tar.gz
git-26b052515d1714918a7da4bfcdaaca37dc4db2e0.tar.xz
git: Remove handling for GIT_PREFIX
handle_alias() no longer needs to set GIT_PREFIX since it is defined in setup_git_directory_gently(). Remove the duplicated effort and use run_command_v_opt() since there is no need to setup the environment. Signed-off-by: David Aguilar <davvid@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git.c')
-rw-r--r--git.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/git.c b/git.c
index ed899512f..ef598c3e7 100644
--- a/git.c
+++ b/git.c
@@ -179,8 +179,6 @@ static int handle_alias(int *argcp, const char ***argv)
if (alias_string[0] == '!') {
const char **alias_argv;
int argc = *argcp, i;
- struct strbuf sb = STRBUF_INIT;
- const char *env[2];
commit_pager_choice();
@@ -191,13 +189,7 @@ static int handle_alias(int *argcp, const char ***argv)
alias_argv[i] = (*argv)[i];
alias_argv[argc] = NULL;
- strbuf_addstr(&sb, "GIT_PREFIX=");
- if (subdir)
- strbuf_addstr(&sb, subdir);
- env[0] = sb.buf;
- env[1] = NULL;
- ret = run_command_v_opt_cd_env(alias_argv, RUN_USING_SHELL, NULL, env);
- strbuf_release(&sb);
+ ret = run_command_v_opt(alias_argv, RUN_USING_SHELL);
if (ret >= 0) /* normal exit */
exit(ret);