X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=shell.c;h=8c08cf0fb339d293383c3dacb8cdfc805afa3727;hb=e968751573a4ded76201a0e4414ec36649a92dda;hp=cd316185e96c73c1f7d0e6309abe3241c2deb7c4;hpb=423325a2d24638ddcc82ce47be5e40be550f4507;p=git.git diff --git a/shell.c b/shell.c index cd316185..8c08cf0f 100644 --- a/shell.c +++ b/shell.c @@ -1,5 +1,6 @@ #include "cache.h" #include "quote.h" +#include "exec_cmd.h" static int do_generic_cmd(const char *me, char *arg) { @@ -7,12 +8,14 @@ static int do_generic_cmd(const char *me, char *arg) if (!arg || !(arg = sq_dequote(arg))) die("bad argument"); + if (strncmp(me, "git-", 4)) + die("bad command"); - my_argv[0] = me; + my_argv[0] = me + 4; my_argv[1] = arg; my_argv[2] = NULL; - return execvp(me, (char**) my_argv); + return execv_git_cmd(my_argv); } static struct commands {