Files
TexturePack/9/build.py
YoyoNow 82ba75fae7
All checks were successful
SteamWarCI Build successful
Optimize .zip size
2025-06-11 14:11:54 +02:00

11 lines
271 B
Python

import os
current_dir = os.getcwd()
# Removing all .md files
for root, dirs, files in os.walk(current_dir):
for file in files:
src_file = os.path.join(root, file)
if os.path.isfile(src_file) and file.endswith(".md"):
os.remove(src_file)