mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-15 10:47:49 -06:00
Build: Fix inverted filter condition for libraries.
Noticed that we _only_ kept the libraries we _didn't_ want, instead of the inverse :-p part of CURA-12229
This commit is contained in:
parent
52824c4872
commit
2d9e7a347f
1 changed files with 1 additions and 1 deletions
|
@ -283,7 +283,7 @@ class CuraConan(ConanFile):
|
||||||
|
|
||||||
# filter all binary files in binaries on the blacklist
|
# filter all binary files in binaries on the blacklist
|
||||||
blacklist = pyinstaller_metadata["blacklist"]
|
blacklist = pyinstaller_metadata["blacklist"]
|
||||||
filtered_binaries = [b for b in binaries if any([all([(part in b) for part in parts]) for parts in blacklist])]
|
filtered_binaries = [b for b in binaries if not any([all([(part in b) for part in parts]) for parts in blacklist])]
|
||||||
|
|
||||||
# TEMP: print to make sure -- remove this before merge
|
# TEMP: print to make sure -- remove this before merge
|
||||||
print("specifically don't include:")
|
print("specifically don't include:")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue