From 6ca4af399a91df5a57c20b5f3d3784d30ddd6b91 Mon Sep 17 00:00:00 2001 From: Joey de l'Arago Date: Fri, 13 Jan 2023 11:33:43 +0100 Subject: [PATCH] Use different identifier for different versions so that they don't replace eachother. CURA-6867 --- packaging/MacOS/build_macos.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packaging/MacOS/build_macos.py b/packaging/MacOS/build_macos.py index ef239fa131..660ae596b4 100644 --- a/packaging/MacOS/build_macos.py +++ b/packaging/MacOS/build_macos.py @@ -43,8 +43,7 @@ def build_pkg(dist_path: str, app_filename: str, component_filename: str, cura_v # This builds the component package that contains UltiMaker-Cura.app. This component package will be bundled in a distribution package. pkg_build_arguments = [ pkg_build_executable, - "--identifier", ULTIMAKER_CURA_DOMAIN, - "--version", cura_version, + "--identifier", f"{ULTIMAKER_CURA_DOMAIN}_{cura_version}", # If we want to replace previous version automatecially remove {cure_version} "--component", Path(dist_path, app_filename), Path(dist_path, component_filename),