mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-05 04:54:04 -06:00
MacOS App doesn't like dots
Contributes to CURA-11014
This commit is contained in:
parent
f806a61819
commit
d8b5b26a0a
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ class UMBUNDLE(BUNDLE):
|
|||
pass
|
||||
else:
|
||||
if typ == 'DATA':
|
||||
if any([p.startswith(".") for p in inm.parent.parts if inm.parent.is_dir()]) or inm.suffix == '.so':
|
||||
if any(["." in p for p in inm.parent.parts if inm.parent.is_dir()]) or inm.suffix == '.so':
|
||||
# Skip info dist egg and some not needed folders in tcl and tk, since they all contain dots in their files
|
||||
logger.warning(f"Skipping DATA file {inm}")
|
||||
continue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue