From 87b5ba91b10894b4f2242f9fdb74ab38a72b9a92 Mon Sep 17 00:00:00 2001 From: joel Date: Mon, 20 Jul 2026 18:18:47 +0200 Subject: [PATCH] Rename ZIP output to macos instead of darwin --- build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index 4e9dbc2..76e51f0 100644 --- a/build.py +++ b/build.py @@ -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: