Ocarina of Time: remove 32 bit windows executables, as AP never supported it

This commit is contained in:
Fabian Dill
2021-09-04 14:38:34 +02:00
parent 25bbbdbecd
commit e53b5324f5
4 changed files with 5 additions and 9 deletions

View File

@@ -162,6 +162,9 @@ if signtool:
os.system(signtool + os.path.join(buildfolder, exe.target_name))
print(f"Signing SNI")
os.system(signtool + os.path.join(buildfolder, "SNI", "SNI.exe"))
print(f"Signing OoT Utils")
for exe_path in (("Compress", "Compress.exe"), ("Decompress", "Decompress.exe")):
os.system(signtool + os.path.join(buildfolder, "lib", "worlds", "oot", "data", *exe_path))
remove_sprites_from_folder(buildfolder / "data" / "sprites" / "alttpr")