[O] Ignore dot files
This commit is contained in:
+1
-1
@@ -364,7 +364,7 @@ def pack_data() -> None:
|
|||||||
# Add sources
|
# Add sources
|
||||||
src_path = Path(os.path.realpath(__file__)).parent
|
src_path = Path(os.path.realpath(__file__)).parent
|
||||||
for f in os.listdir(src_path):
|
for f in os.listdir(src_path):
|
||||||
if not os.path.isdir(f) and f != '.DS_Store':
|
if not os.path.isdir(f) and f != '.DS_Store' and not f.startswith('._'):
|
||||||
z.write(f)
|
z.write(f)
|
||||||
|
|
||||||
# Add packed resource
|
# Add packed resource
|
||||||
|
|||||||
Reference in New Issue
Block a user