oh, right, windows users use .zips dont they?

This commit is contained in:
2026-02-17 23:43:55 +00:00
parent 323af22356
commit 7f335e3a26
+6
View File
@@ -35,6 +35,12 @@ for rid in RIDS:
raise OSError("Build error")
print(f"==> ZIPPING: {rid}")
if target_os == "win":
os.chdir("./pub")
os.system(rf"zip -r {rid}.zip {rid} >> /dev/null")
os.chdir("..")
continue
os.system(rf"tar czvf ./pub/{rid}.tar.gz -C ./pub/ {rid} >> /dev/null")
os.chdir("pub")