revert: "fixme: allow huge Electron archives" (#15048)
This reverts commit f7dee77f2b
.
This commit is contained in:
parent
c96847206e
commit
978d16b8ab
1 changed files with 1 additions and 2 deletions
|
@ -41,8 +41,7 @@ def main(argv):
|
||||||
if sys.platform == 'darwin':
|
if sys.platform == 'darwin':
|
||||||
execute(['zip', '-r', '-y', dist_zip] + list(dist_files))
|
execute(['zip', '-r', '-y', dist_zip] + list(dist_files))
|
||||||
else:
|
else:
|
||||||
with zipfile.ZipFile(dist_zip, mode='w', compression=zipfile.ZIP_DEFLATED,
|
with zipfile.ZipFile(dist_zip, 'w', zipfile.ZIP_DEFLATED) as z:
|
||||||
allowZip64=True) as z:
|
|
||||||
for dep in dist_files:
|
for dep in dist_files:
|
||||||
if skip_path(dep):
|
if skip_path(dep):
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Add table
Reference in a new issue