1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-04-24 06:05:15 +02:00

Merge branch 'jc/archive-add-file-normalize-mode' into next

"git archive --add-file=<path>" picked up the raw permission bits
from the path and propagated to zip output in some cases, without
normalization, which has been corrected (tar output did not have
this issue).

* jc/archive-add-file-normalize-mode:
  archive: do not let on-disk mode leak to zip archives
This commit is contained in:
Junio C Hamano 2022-05-16 15:39:18 -07:00
commit 265bb02f2a

View File

@ -342,7 +342,7 @@ int write_archive_entries(struct archiver_args *args,
else
err = write_entry(args, &fake_oid, path_in_archive.buf,
path_in_archive.len,
info->stat.st_mode,
canon_mode(info->stat.st_mode),
content.buf, content.len);
if (err)
break;