mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 01:12:11 +00:00
romfs pruner: do not try to prune .swp files
This commit is contained in:
@@ -43,29 +43,30 @@ from __future__ import print_function
|
|||||||
import argparse
|
import argparse
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
||||||
# Parse commandline arguments
|
# Parse commandline arguments
|
||||||
parser = argparse.ArgumentParser(description="ROMFS pruner.")
|
parser = argparse.ArgumentParser(description="ROMFS pruner.")
|
||||||
parser.add_argument('--folder', action="store", help="ROMFS scratch folder.")
|
parser.add_argument('--folder', action="store", help="ROMFS scratch folder.")
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
print("Pruning ROMFS files.")
|
print("Pruning ROMFS files.")
|
||||||
|
|
||||||
# go through
|
# go through
|
||||||
for (root, dirs, files) in os.walk(args.folder):
|
for (root, dirs, files) in os.walk(args.folder):
|
||||||
for file in files:
|
for file in files:
|
||||||
# only prune text files
|
# only prune text files
|
||||||
if ".zip" in file or ".bin" in file:
|
if ".zip" in file or ".bin" or ".swp" in file:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
file_path = os.path.join(root, file)
|
file_path = os.path.join(root, file)
|
||||||
|
|
||||||
# read file line by line
|
# read file line by line
|
||||||
pruned_content = ""
|
pruned_content = ""
|
||||||
with open(file_path, "r") as f:
|
with open(file_path, "r") as f:
|
||||||
for line in f:
|
for line in f:
|
||||||
|
|
||||||
# handle mixer files differently than startup files
|
# handle mixer files differently than startup files
|
||||||
if file_path.endswith(".mix"):
|
if file_path.endswith(".mix"):
|
||||||
if line.startswith(("Z:", "M:", "R: ", "O:", "S:")):
|
if line.startswith(("Z:", "M:", "R: ", "O:", "S:")):
|
||||||
@@ -73,11 +74,11 @@ def main():
|
|||||||
else:
|
else:
|
||||||
if not line.isspace() and not line.strip().startswith("#"):
|
if not line.isspace() and not line.strip().startswith("#"):
|
||||||
pruned_content += line
|
pruned_content += line
|
||||||
|
|
||||||
# overwrite old scratch file
|
# overwrite old scratch file
|
||||||
with open(file_path, "w") as f:
|
with open(file_path, "w") as f:
|
||||||
f.write(pruned_content)
|
f.write(pruned_content)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|||||||
Reference in New Issue
Block a user