From 08c11f0c28de0bc9b2430a7728b0ee993418991b Mon Sep 17 00:00:00 2001 From: jellespijker Date: Mon, 4 Jul 2022 16:00:13 +0200 Subject: [PATCH] Use correct bundle id Contributes to CURA-9365 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 3de29badb8..2e927f758b 100644 --- a/conanfile.py +++ b/conanfile.py @@ -192,7 +192,7 @@ class CuraConan(ConanFile): collect_all = pyinstaller_metadata["collect_all"], icon = icon_path, entitlements_file = entitlements_file, - osx_bundle_identifier = "'nl.ultimaker.cura.dmg'" if self.settings.os == "Macos" else "None", + osx_bundle_identifier = "'nl.ultimaker.cura'" if self.settings.os == "Macos" else "None", upx = str(self.settings.os == "Windows"), strip = str(self.settings.os != "Windows"), target_arch = "'x86_64'" if self.settings.os == "Macos" else "None", # FIXME: Make this dependent on the settings.arch_target