Fix texture pack escape menu
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-06-13 11:59:17 +02:00
parent d487e1f39e
commit 869e8a847b
150 changed files with 300 additions and 310 deletions

View File

@ -85,6 +85,10 @@ def sha1_of_file(filepath):
if __name__ == "__main__":
versions=getVersions()
zipFiles = [name for name in os.listdir(current_dir) if os.path.isfile(os.path.join(current_dir, name)) and name.endswith(".zip") ]
for zipFile in zipFiles:
os.remove(os.path.join(current_dir, zipFile))
with tempfile.TemporaryDirectory() as tmpdirname:
for version in versions:
buildPack(tmpdirname, version)