mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Fix not internal builds
Contributes to CURA-9528
This commit is contained in:
parent
d92fd3d1e3
commit
37077a7823
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ class CuraConan(ConanFile):
|
|||
pyinstaller_metadata = self._um_data()["pyinstaller"]
|
||||
datas = [(str(self._base_dir.joinpath("conan_install_info.json")), ".")]
|
||||
for data in pyinstaller_metadata["datas"].values():
|
||||
if not self.options.internal and ("internal" not in data or not data["internal"]):
|
||||
if not self.options.internal and "internal" in data and not data["internal"]:
|
||||
continue
|
||||
|
||||
if "package" in data: # get the paths from conan package
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue