From fb0273afb0c939d12b772b8f34eb54ce7d660791 Mon Sep 17 00:00:00 2001 From: Maurice Date: Mon, 8 Dec 2025 06:25:51 +0100 Subject: [PATCH] fixed bug in build.sh --- build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 884e553..8253cde 100644 --- a/build.sh +++ b/build.sh @@ -1,7 +1,10 @@ +rm -rf out/app + jpackage \ --input out/artifacts/JGame2D_jar/ \ --main-jar JGame2D.jar \ --main-class de.miaurizius.jgame2d.core.Boot \ --name JGame2D \ --type app-image \ - --add-modules ALL-MODULE-PATH \ No newline at end of file + --add-modules ALL-MODULE-PATH \ + --dest out/app \ No newline at end of file