Optimize .zip size
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-06-11 14:11:54 +02:00
parent c6417c74f1
commit 82ba75fae7
18 changed files with 20 additions and 0 deletions

10
9/build.py Normal file
View File

@ -0,0 +1,10 @@
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)