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

fucking python3 bug masked

üst 57493df6
......@@ -515,12 +515,15 @@ class ArchiveTar(ArchiveBase):
#
# Note: This is no good while installing a inary package.
# Thats why this is optional.
if not os.path.islink(tarinfo.name):
if os.path.isfile(tarinfo.name):
os.chown(tarinfo.name, 0,0)
os.chmod(tarinfo.name, tarinfo.mode)
# FIXME: We must chmod directory as 755. Empty directory permission is 777. Remove this
elif os.path.isdir(tarinfo.name):
os.chown(tarinfo.name, 0,0)
os.chmod(tarinfo.name, 0o755)
else:
os.lchown(tarinfo.name, 0,0)
os.chmod(tarinfo.name, tarinfo.mode)
if self.no_same_owner:
uid = os.getuid()
......
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