mirror of
https://github.com/opentx/opentx.git
synced 2025-07-23 00:05:17 +03:00
Bug in compile script (wrong extensions)
This commit is contained in:
parent
e80cd15112
commit
e7c03fa587
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ def upload(binaries, ext, stamp):
|
||||||
zip_name = "release.zip"
|
zip_name = "release.zip"
|
||||||
zip = zipfile.ZipFile(zip_name, "w")
|
zip = zipfile.ZipFile(zip_name, "w")
|
||||||
for bin in binaries:
|
for bin in binaries:
|
||||||
zip.write(BINARY_DIR + bin + "." + ext, bin)
|
zip.write(BINARY_DIR + bin + "." + ext, bin + "." + ext)
|
||||||
zip.write(BINARY_DIR + stamp, stamp)
|
zip.write(BINARY_DIR + stamp, stamp)
|
||||||
zip.close()
|
zip.close()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue