From 3e67566aad1d0648393e4ff9296c9b650a8b8a5f Mon Sep 17 00:00:00 2001 From: "j.spijker@ultimaker.com" Date: Tue, 14 Jun 2022 09:18:08 +0200 Subject: [PATCH] Use relative path for the entrypoint Contributes to CURA-9365 --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 6bb3f965a3..dc00620fcc 100644 --- a/conanfile.py +++ b/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"],