Browse Source

use append

Contribute to NP-186
Jelle Spijker 10 months ago
parent
commit
0ae3574b05
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/conanfile.py

+ 1 - 1
resources/conanfile.py

@@ -59,7 +59,7 @@ class CuraResource(ConanFile):
     def package_info(self):
         self.cpp_info.includedirs = []
         self.runenv_info.append_path("CURA_RESOURCES", os.path.join(self.package_folder, "res"))
-        self.env_info.CURA_RESOURCES.append_path(os.path.join(self.package_folder, "res"))
+        self.env_info.CURA_RESOURCES.append(os.path.join(self.package_folder, "res"))
 
     def package_id(self):
         self.info.clear()