mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 23:17:32 -06:00
Build: Filter didn't work because the filename was in a tuple.
part of CURA-12229
This commit is contained in:
parent
2d9e7a347f
commit
e0f0e9407b
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
|
||||
blacklist = pyinstaller_metadata["blacklist"]
|
||||
filtered_binaries = [b for b in binaries if not 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[0].lower()) for part in parts]) for parts in blacklist])]
|
||||
|
||||
# TEMP: print to make sure -- remove this before merge
|
||||
print("specifically don't include:")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue