fixed stupid dumbass mistake i made me dumb

This commit is contained in:
2026-03-02 21:32:56 -05:00
parent 4e5a4172bf
commit b532a63fc6

View File

@@ -110,6 +110,9 @@ def process_root(src_root: Path, out_root: Path, minify: bool, micro: bool):
dst.write_bytes(compressed) dst.write_bytes(compressed)
else: else:
dst.write_text(content, encoding="utf-8") dst.write_text(content, encoding="utf-8")
else:
print(" > Copying")
shutil.copy2(src, dst)
else: else:
print(" > Copying") print(" > Copying")
shutil.copy2(src, dst) shutil.copy2(src, dst)