From cd43764b493759ffbac4d95921914fbd6118eb84 Mon Sep 17 00:00:00 2001 From: dsent <8774536+dsent@users.noreply.github.com> Date: Tue, 23 Jun 2026 18:07:21 +0200 Subject: [PATCH] build: package love archive as zip --- justfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 14ccf699..9cf08092 100644 --- a/justfile +++ b/justfile @@ -134,7 +134,8 @@ one-harmony: VERSION := `git describe --tags --long --always` package: version - @7z a {{DIST}}/game.love ./src/* > /dev/null + @rm -f {{DIST}}/game.love + @7z -tzip a {{DIST}}/game.love ./src/* > /dev/null @echo packaged: @ls -lh {{DIST}}/game.love