fix(server_launch): set proper java arguments

This commit is contained in:
Jiří Štefka 2023-03-30 19:21:26 +02:00
parent 78d6bcfd5a
commit 13aaecb315
2 changed files with 4 additions and 2 deletions

@ -1,3 +1,3 @@
#!/bin/bash #!/bin/bash
EXTRA_SCRIPTS_VERSION="v2.1.2" EXTRA_SCRIPTS_VERSION="v2.1.3"

@ -8,7 +8,7 @@ set -e
# and acknowledge the original script and author. # # 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 # You shouldn't need to change anything in this file
@ -498,6 +498,8 @@ function main {
# Check if this is the first run # Check if this is the first run
first_run first_run
# Set the java arguments
set_java_args
# Launch the server # Launch the server
launch_server launch_server
} }