From 1dd0ebe56c07f3a62efe24315f51e68898a8f1f5 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Mon, 13 Dec 2021 19:32:24 -0500 Subject: [PATCH] [O] Ignore dot files --- src/processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/processing.py b/src/processing.py index 63bd363..116da65 100644 --- a/src/processing.py +++ b/src/processing.py @@ -364,7 +364,7 @@ def pack_data() -> None: # Add sources src_path = Path(os.path.realpath(__file__)).parent 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) # Add packed resource