mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Use relative path for the entrypoint
Contributes to CURA-9365
This commit is contained in:
parent
ca83874f65
commit
3e67566aad
1 changed files with 1 additions and 1 deletions
|
@ -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"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue