mirror of
https://github.com/electron/electron.git
synced 2026-01-09 15:38:08 -05:00
revert: "fixme: allow huge Electron archives" (#15048)
This reverts commit f7dee77f2b.
This commit is contained in:
@@ -41,8 +41,7 @@ def main(argv):
|
||||
if sys.platform == 'darwin':
|
||||
execute(['zip', '-r', '-y', dist_zip] + list(dist_files))
|
||||
else:
|
||||
with zipfile.ZipFile(dist_zip, mode='w', compression=zipfile.ZIP_DEFLATED,
|
||||
allowZip64=True) as z:
|
||||
with zipfile.ZipFile(dist_zip, 'w', zipfile.ZIP_DEFLATED) as z:
|
||||
for dep in dist_files:
|
||||
if skip_path(dep):
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user