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 09:56:06 +0300
committerJelle Spijker <j.spijker@ultimaker.com>2022-07-01 09:56:06 +0300
commitff321409c5a0f937e88e50e28e3e12d930f1ca1b (patch)
tree0990e88e3982869e409faf608fa5626a8e0490a5 /conanfile.py
parentb6676e7bb92a78205fcbd86aabd1a139e0031c44 (diff)
Revert "Clean the install folder first"
This reverts commit 627bd929c4cce3bac7c4c4a7cdb93e0198752563.
Diffstat (limited to 'conanfile.py')
-rw-r--r--conanfile.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/conanfile.py b/conanfile.py
index 486ca13a25..08ed89bd78 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -253,9 +253,8 @@ class CuraConan(ConanFile):
self.copy("*.dylib", src = "@libdirs", dst = self._script_dir)
def deploy(self):
- # Clean the install folder before hand
- self._base_dir.unlink(missing_ok = True)
-
+ # Copy CuraEngine.exe to bindirs of Virtual Python Environment
+ # TODO: Fix source such that it will get the curaengine relative from the executable (Python bindir in this case)
self.copy_deps("CuraEngine.exe", root_package = "curaengine", src = self.deps_cpp_info["curaengine"].bindirs[0],
dst = self._base_dir,
keep_path = False)