diff options
author | Petr Baudis <pasky@suse.cz> | 2008-10-03 12:20:43 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-10-18 07:16:38 -0700 |
commit | 33b650308c9be52180c6556b17cb9fc1fba3adf4 (patch) | |
tree | 3799bb7fdc34a2939c147ab431f33c6f3656fd88 /index-pack.c | |
parent | 5c283eb13c94be6ca974aa722159dc9838d10d97 (diff) | |
download | git-33b650308c9be52180c6556b17cb9fc1fba3adf4.tar.gz |
Do not rename read-only files during a push
Win32 does not allow renaming read-only files (at least on a Samba
share), making push into a local directory to fail. Thus, defer
the chmod() call in index-pack.c:final() only after
move_temp_to_file() was called.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'index-pack.c')
-rw-r--r-- | index-pack.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/index-pack.c b/index-pack.c index d3a4d31b4e..aec11cb940 100644 --- a/index-pack.c +++ b/index-pack.c @@ -790,7 +790,6 @@ static void final(const char *final_pack_name, const char *curr_pack_name, err = close(output_fd); if (err) die("error while closing pack file: %s", strerror(errno)); - chmod(curr_pack_name, 0444); } if (keep_msg) { @@ -824,8 +823,9 @@ static void final(const char *final_pack_name, const char *curr_pack_name, if (move_temp_to_file(curr_pack_name, final_pack_name)) die("cannot store pack file"); } + if (from_stdin) + chmod(final_pack_name, 0444); - chmod(curr_index_name, 0444); if (final_index_name != curr_index_name) { if (!final_index_name) { snprintf(name, sizeof(name), "%s/pack/pack-%s.idx", @@ -835,6 +835,7 @@ static void final(const char *final_pack_name, const char *curr_pack_name, if (move_temp_to_file(curr_index_name, final_index_name)) die("cannot store index file"); } + chmod(final_index_name, 0444); if (!from_stdin) { printf("%s\n", sha1_to_hex(sha1)); |