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:
parent
4796acbd49
commit
aeca178de7
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue