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:
authorc.lamboo <casperlamboo@gmail.com>2022-07-01 10:56:40 +0300
committerc.lamboo <casperlamboo@gmail.com>2022-07-01 10:56:40 +0300
commit0580814352f1baf9dc4ce3d96bd93d5d1e5853ef (patch)
treeeace14695daa402e5c88cbb56296491f7ad476f8 /conanfile.py
parent61d276f5eefbfd98870dea95f7760672bedee974 (diff)
Fix passing macos flag to jinja
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 067d1a231b..b262fa89da 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -196,7 +196,7 @@ class CuraConan(ConanFile):
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
- macos = "'{}'".format(str(self.settings.os == "Macos"))
+ macos = self.settings.os == "Macos"
))
def source(self):