From b56934f0a562606f160251658bcbc503634c8377 Mon Sep 17 00:00:00 2001 From: Andy Killorin <37423245+Speedy6451@users.noreply.github.com> Date: Tue, 12 Sep 2023 23:33:00 -0500 Subject: [PATCH] change zip bundle to match js13kgames spec --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index e700948..0fe36d9 100644 --- a/justfile +++ b/justfile @@ -33,7 +33,7 @@ check-zip: zip @cat build/release.zip | wc -c | xargs -I {} python3 -c "print(str(round({}/(13*1024)*100,2))+'%')" zip: build - zip -r build/release.zip build -x release.zip + cd build; zip -r release.zip * -x release.zip run: build python3 -m http.server &