Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorj.spijker@ultimaker.com <jelle spijker>2022-07-01 08:25:28 +0300
committerJelle Spijker <j.spijker@ultimaker.com>2022-07-01 08:25:28 +0300
commit7bc71070fd6f051e7a862fa95cf85a145e9496bf (patch)
treeca78a6450602817c8e5bcb63c2317bba4c2d571c /conanfile.py
parentdec5609459dbf3fef1f3939f6dd8fe93df66ae1f (diff)
Remove quotes around None value
Contributes to CURA-9365
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/conanfile.py b/conanfile.py
index f32964266c..286eed0fee 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -189,7 +189,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.dmg'" 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