Skip to content
Snippets Groups Projects
Commit 37edb43b authored by Lorenz Meier's avatar Lorenz Meier
Browse files

ROMFS: Strip README files

parent 6268cdc8
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,11 @@ def main():
os.remove(file_path)
continue
# delete documentation
if file.startswith("README"):
os.remove(file_path)
continue
# only prune text files
if ".zip" in file or ".bin" in file or ".swp" in file \
or ".data" in file or ".DS_Store" in file:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment