1
0
Fork 0
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:
bsongis 2012-04-21 07:15:11 +00:00
parent e80cd15112
commit e7c03fa587

View file

@ -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()