Rename ZIP output to macos instead of darwin

This commit is contained in:
joel
2026-07-20 18:18:47 +02:00
parent cb13fd8d2b
commit 87b5ba91b1
+2 -1
View File
@@ -86,7 +86,8 @@ def build():
# ZIP-Archiv für das Release erstellen
import tempfile
zip_name = f"fcco-Converter-{system.lower()}"
sys_name = "macos" if system == "Darwin" else system.lower()
zip_name = f"fcco-Converter-{sys_name}"
zip_path = dist_dir / zip_name
with tempfile.TemporaryDirectory() as tmpdir: