mirror of
https://github.com/opentx/opentx.git
synced 2025-07-21 15:25: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 = zipfile.ZipFile(zip_name, "w")
|
||||
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.close()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue