fixed minify header and build script

This commit is contained in:
2026-02-25 11:41:41 -05:00
parent 02e7b3897c
commit a6550aa069
16 changed files with 18 additions and 34 deletions

View File

@@ -72,7 +72,7 @@ def process_root(src_root: Path, out_root: Path, minify: bool):
if minify and has_minify_header(src):
print(" > Minifying")
result = subprocess.run(
["luamin", "-f", str(src)],
["luamin.cmd", "-f", str(src)],
capture_output=True, text=True
)
if result.returncode != 0: