From 6828c15628f9fc100cc89b074df2f3ed83e49a8d Mon Sep 17 00:00:00 2001 From: forkless Date: Mon, 1 Jun 2026 05:56:47 +0200 Subject: [PATCH] Clean old zip before packaging Windows release --- build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sh b/build.sh index ebb4dc3..45f6c24 100755 --- a/build.sh +++ b/build.sh @@ -45,6 +45,7 @@ echo " $LINUX_ARCHIVE ($(du -h "$LINUX_ARCHIVE" | cut -f1))" if [ "$WINDOWS_SKIP" -eq 0 ]; then WIN_ARCHIVE="builds/notalterra-v${VERSION}-windows-x64.zip" + rm -f "$WIN_ARCHIVE" cp target/x86_64-pc-windows-gnu/release/notalterra.exe NotAlterra.exe zip -q "$WIN_ARCHIVE" NotAlterra.exe rm -f NotAlterra.exe