Browse Source

Use relative path for the entrypoint

Contributes to CURA-9365
j.spijker@ultimaker.com 2 years ago
parent
commit
3e67566aad
1 changed files with 1 additions and 1 deletions
  1. 1 1
      conanfile.py

+ 1 - 1
conanfile.py

@@ -182,7 +182,7 @@ class CuraConan(ConanFile):
             with open(Path(self.source_folder, "Ultimaker-Cura.spec"), "w") as f:
                 f.write(pyinstaller.render(
                     name = str(self.options.display_name).replace(" ", "-"),
-                    entrypoint = str(Path(self.source_folder, "cura_app.py")),
+                    entrypoint = "cura_app.py",
                     datas = datas,
                     binaries = binaries,
                     hiddenimports = pyinstaller_metadata["hiddenimports"],