From dfaac1bd51e42141bb58b9d310d8ffb95cee64a4 Mon Sep 17 00:00:00 2001 From: Michael Jerger <michael.jerger@meissa-gmbh.de> Date: Fri, 7 Mar 2025 19:23:41 +0100 Subject: [PATCH] fix inst --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index eb72869..f62c9d2 100644 --- a/build.py +++ b/build.py @@ -150,12 +150,12 @@ def inst(project): shell=True, check=True, ) - package_native(project) run( "sudo install -m=755 target/uberjar/" + project.name + "-standalone.jar /usr/local/bin/" + project.name + "-standalone.jar", shell=True, check=True, ) + package_native(project) run( "sudo install -m=755 target/graalvm/" + project.name + " /usr/local/bin/" + project.name + "", shell=True,