1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-20 23:05:12 +03:00

Compile script didn't unflate the Zip!

This commit is contained in:
bsongis 2012-04-21 14:09:51 +00:00
parent 4796acbd49
commit aeca178de7

View file

@ -45,7 +45,7 @@ def upload(binaries, ext, stamp):
print "Zip creation..."
zip_name = "release.zip"
zip = zipfile.ZipFile(zip_name, "w")
zip = zipfile.ZipFile(zip_name, "w", zipfile.ZIP_DEFLATED)
for bin in binaries:
zip.write(BINARY_DIR + bin + "." + ext, bin + "." + ext)
zip.write(BINARY_DIR + stamp, stamp)