Skip to content
This repository has been archived by the owner on Oct 1, 2021. It is now read-only.

Commit

Permalink
add ledbin to the list of files to be ignored for pruning
Browse files Browse the repository at this point in the history
  • Loading branch information
bugobliterator committed Aug 17, 2017
1 parent 45ca928 commit 4245345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/px_romfs_pruner.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def main():
for (root, dirs, files) in os.walk(args.folder):
for file in files:
# only prune text files
if ".zip" in file or ".bin" in file or ".swp" in file \
if ".zip" in file or ".bin" in file or ".ledbin" in file or ".swp" in file \
or ".data" in file or ".DS_Store" in file \
or file.startswith("."):
continue
Expand Down

0 comments on commit 4245345

Please sign in to comment.