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:
authorJelle Spijker <j.spijker@ultimaker.com>2022-07-01 01:09:22 +0300
committerGitHub <noreply@github.com>2022-07-01 01:09:22 +0300
commit36bcb97dbbf55938119f3d038ab86f29776105e3 (patch)
tree94bdea6209fdf9758bafd22258dd1e35eab6bacf /conanfile.py
parent6047c101ed753d69e8f364500e56c7c5f69c6471 (diff)
place qoutes around path
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/conanfile.py b/conanfile.py
index 2fc28bc474..459dfc99bb 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -173,9 +173,9 @@ class CuraConan(ConanFile):
if dependency.ref.name == "cpython":
continue
for bin_paths in dependency.cpp_info.bindirs:
- conan_binaries.extend([(p, ".") for p in Path(bin_paths).glob("**/*.dll")])
- conan_binaries.extend([(p, ".") for p in Path(bin_paths).glob("**/*.dylib")])
- conan_binaries.extend([(p, ".") for p in Path(bin_paths).glob("**/*.so")])
+ conan_binaries.extend([(f"'{p}'", ".") for p in Path(bin_paths).glob("**/*.dll")])
+ conan_binaries.extend([(f"'{p}'", ".") for p in Path(bin_paths).glob("**/*.dylib")])
+ conan_binaries.extend([(f"'{p}'", ".") for p in Path(bin_paths).glob("**/*.so")])
with open(Path(__file__).parent.joinpath("Ultimaker-Cura.spec.jinja"), "r") as f:
pyinstaller = Template(f.read())