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-07 08:07:32 +0300
committerjspijker <j.spijker@ultimaker.com>2022-07-07 08:07:32 +0300
commit4d98ba3540dd74ba9dacaecac4e83d6157d55243 (patch)
treeb9db99392ac1a3b519020d1e5d969f2f354767ad /conanfile.py
parent5191d4f9da207717948e21619dad27b04bdfd618 (diff)
Fixed missing qoutes
Contributes to CURA-9365
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/conanfile.py b/conanfile.py
index ae2d83e51e..38dfe34fe0 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -203,8 +203,8 @@ class CuraConan(ConanFile):
strip = False, # This should be possible on Linux and MacOS but, it can also cause issues on some distributions. Safest is to disable it for now
target_arch = "'x86_64'" if self.settings.os == "Macos" else "None", # FIXME: Make this dependent on the settings.arch_target
macos = self.settings.os == "Macos",
- version = self.version,
- short_version = f"{cura_version.major}.{cura_version.minor}.{cura_version.patch}",
+ version = f"'{self.version}'",
+ short_version = f"'{cura_version.major}.{cura_version.minor}.{cura_version.patch}'",
))
def source(self):