mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
Fix backup exclusion issue
This commit is contained in:
parent
296a5a46de
commit
d45e32013b
@ -226,7 +226,7 @@ class FileHelpers:
|
||||
comment, "utf-8"
|
||||
) # comments over 65535 bytes will be truncated
|
||||
for root, dirs, files in os.walk(path_to_zip, topdown=True):
|
||||
for l_dir in dirs:
|
||||
for l_dir in dirs[:]:
|
||||
# make all paths in exclusions a unix style slash to match directories.
|
||||
if str(os.path.join(root, l_dir)).replace("\\", "/") in ex_replace:
|
||||
dirs.remove(l_dir)
|
||||
|
Loading…
Reference in New Issue
Block a user