From 13aaecb3158f002d01df5b08a3cf910f2017b164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=A0tefka?= Date: Thu, 30 Mar 2023 19:21:26 +0200 Subject: [PATCH] fix(server_launch): set proper java arguments --- .msman/version.sh | 2 +- msman.sh | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.msman/version.sh b/.msman/version.sh index 5c9ccf9..36d1843 100644 --- a/.msman/version.sh +++ b/.msman/version.sh @@ -1,3 +1,3 @@ #!/bin/bash -EXTRA_SCRIPTS_VERSION="v2.1.2" +EXTRA_SCRIPTS_VERSION="v2.1.3" diff --git a/msman.sh b/msman.sh index 4e142b5..df79209 100755 --- a/msman.sh +++ b/msman.sh @@ -8,7 +8,7 @@ set -e # and acknowledge the original script and author. # ############################################################################################################# -CURRENT_SCRIPT_VERSION="v2.1.2" +CURRENT_SCRIPT_VERSION="v2.1.3" # -------------------------------------------------- # You shouldn't need to change anything in this file @@ -498,6 +498,8 @@ function main { # Check if this is the first run first_run + # Set the java arguments + set_java_args # Launch the server launch_server }