From 573612c1c5eae1db3b5c17a3c2c225878bbdda95 Mon Sep 17 00:00:00 2001 From: Semyon Bezrukov Date: Fri, 8 Aug 2025 20:05:45 +0300 Subject: [PATCH] Fix desktop commercial windows package name --- scripts/package_desktop.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/package_desktop.py b/scripts/package_desktop.py index 13093fd..bf99003 100644 --- a/scripts/package_desktop.py +++ b/scripts/package_desktop.py @@ -94,7 +94,7 @@ def make_prepare(): return def make_zip(edition = "opensource"): - if edition == "commercial": zip_file = "%s-Commercial-%s-%s.zip" + if edition == "commercial": zip_file = "%s-Enterprise-%s-%s.zip" elif edition == "xp": zip_file = "%s-XP-%s-%s.zip" else: zip_file = "%s-%s-%s.zip" zip_file = zip_file % (package_name, package_version, arch) @@ -117,7 +117,7 @@ def make_zip(edition = "opensource"): return def make_inno(edition = "opensource"): - if edition == "commercial": inno_file = "%s-Commercial-%s-%s.exe" + if edition == "commercial": inno_file = "%s-Enterprise-%s-%s.exe" elif edition == "standalone": inno_file = "%s-Standalone-%s-%s.exe" elif edition == "update": inno_file = "%s-Update-%s-%s.exe" elif edition == "xp": inno_file = "%s-XP-%s-%s.exe" @@ -142,7 +142,7 @@ def make_inno(edition = "opensource"): return def make_advinst(edition = "opensource"): - if edition == "commercial": advinst_file = "%s-Commercial-%s-%s.msi" + if edition == "commercial": advinst_file = "%s-Enterprise-%s-%s.msi" else: advinst_file = "%s-%s-%s.msi" advinst_file = advinst_file % (package_name, package_version, arch) args = [