Delete the .tar after compressing in Windows, and fix Windows installer

This commit is contained in:
Micah Lee 2021-11-24 16:38:15 -08:00
parent a36599b798
commit 387a742487
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
2 changed files with 4 additions and 0 deletions

View file

@ -1,5 +1,6 @@
import subprocess import subprocess
import gzip import gzip
import os
def main(): def main():
@ -36,6 +37,8 @@ def main():
else: else:
break break
os.remove("share/dangerzone-converter.tar")
print("Looking up the image id") print("Looking up the image id")
image_id = subprocess.check_output( image_id = subprocess.check_output(
[ [

View file

@ -222,6 +222,7 @@ def main():
print(f'<?define ProductVersion = "{version}"?>') print(f'<?define ProductVersion = "{version}"?>')
print('<?define ProductUpgradeCode = "12b9695c-965b-4be0-bc33-21274e809576"?>') print('<?define ProductUpgradeCode = "12b9695c-965b-4be0-bc33-21274e809576"?>')
ET.indent(root_el)
ET.dump(root_el) ET.dump(root_el)