From b532a63fc67075099c1bb581d13e08dc607eb945 Mon Sep 17 00:00:00 2001 From: Astronand Date: Mon, 2 Mar 2026 21:32:56 -0500 Subject: [PATCH] fixed stupid dumbass mistake i made me dumb --- build.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.py b/build.py index 986ceb8..c3bd5e4 100644 --- a/build.py +++ b/build.py @@ -110,6 +110,9 @@ def process_root(src_root: Path, out_root: Path, minify: bool, micro: bool): dst.write_bytes(compressed) else: dst.write_text(content, encoding="utf-8") + else: + print(" > Copying") + shutil.copy2(src, dst) else: print(" > Copying") shutil.copy2(src, dst)