We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29052ba commit c9b7b62Copy full SHA for c9b7b62
CreatePackage.py
@@ -56,7 +56,7 @@ def Main (argv):
56
os.path.abspath (os.path.join ('Build', 'DevKit', 'lib')),
57
os.path.abspath (os.path.join ('Build', 'DevKit', 'source'))
58
]
59
- zip = zipfile.ZipFile (zipPath, 'w')
+ zip = zipfile.ZipFile (zipPath, mode = 'w', compression = zipfile.ZIP_DEFLATED)
60
for folder in requiredFolders:
61
for file in os.listdir (folder):
62
zip.write (os.path.join (folder, file), os.path.join (os.path.basename (folder), file))
0 commit comments