From 5c09f321729c2f1ce6718a0cfefa5e647fa808fc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B6rn=20Steinbrink?= Date: Mon, 3 Mar 2008 05:08:43 +0100 Subject: [PATCH] receive-pack: Initialize PATH to include exec-dir. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 511707d (use only the $PATH for exec'ing git commands) made it a requirement to call setup_path() to include the git exec-dir in PATH before spawning any other git commands. git-receive-pack was not yet adapted to do this and therefore fails to spawn git-unpack-objects if that is not in the standard PATH. Signed-off-by: Björn Steinbrink Signed-off-by: Junio C Hamano --- receive-pack.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/receive-pack.c b/receive-pack.c index 3267495832..c90ec7dde2 100644 --- a/receive-pack.c +++ b/receive-pack.c @@ -469,6 +469,8 @@ int main(int argc, char **argv) if (!dir) usage(receive_pack_usage); + setup_path(NULL); + if (!enter_repo(dir, 0)) die("'%s': unable to chdir or not a git archive", dir); -- 2.11.4.GIT