Kaydet (Commit) f6c30e14 authored tarafından Your Name's avatar Your Name

fix chmod algorithm

üst 41944730
......@@ -517,10 +517,7 @@ class ArchiveTar(ArchiveBase):
# Thats why this is optional.
if not os.path.islink(tarinfo.name):
os.chown(tarinfo.name, 0,0)
if self.no_same_permissions :
os.chmod(tarinfo.name, tarinfo.mode & ~ctx.const.umask)
else:
os.chmod(tarinfo.name, 0o755 & ~ctx.const.umask)
os.chmod(tarinfo.name, tarinfo.mode)
else:
os.lchown(tarinfo.name, 0,0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment