mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 05:39:02 +08: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
@ -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…
x
Reference in New Issue
Block a user