X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=receive-pack.c;h=06857eb77fef93788f54d17cca68924f5213c9db;hb=96768e3108f76a20699b23f7a1218949144b2394;hp=8d6faaaa9c995f5552549557176a48303a0820ac;hpb=19614330ddaf02367a7faf2ff5e09f1f39fd63c4;p=git.git diff --git a/receive-pack.c b/receive-pack.c index 8d6faaaa..06857eb7 100644 --- a/receive-pack.c +++ b/receive-pack.c @@ -106,6 +106,8 @@ static int update(const char *name, return error("unpack should have generated %s, " "but I can't find it!", new_hex); + safe_create_leading_directories(lock_name); + newfd = open(lock_name, O_CREAT | O_EXCL | O_WRONLY, 0666); if (newfd < 0) return error("unable to create %s (%s)", @@ -267,7 +269,7 @@ int main(int argc, char **argv) /* If we have a ".git" directory, chdir to it */ chdir(".git"); - setenv("GIT_DIR", ".", 1); + putenv("GIT_DIR=."); if (access("objects", X_OK) < 0 || access("refs/heads", X_OK) < 0) die("%s doesn't appear to be a git directory", dir);