fixed inverted logic
All checks were successful
Docker Build and Push / build (push) Successful in 3m11s
All checks were successful
Docker Build and Push / build (push) Successful in 3m11s
This commit is contained in:
parent
ec9c48ac68
commit
744bd61ee6
@ -151,7 +151,7 @@ serverSelect() {
|
||||
# Build out java command
|
||||
buildCommand() {
|
||||
JAVA_ARGS="-Xms${MEM} -Xmx${MEM}"
|
||||
if [[ -z ${ADD_ARGS+x} ]]; then
|
||||
if [[ ! -z ${ADD_ARGS+x} ]]; then
|
||||
RUN_STRING="${ADD_ARGS} ${JAVA_ARGS} -jar ${JAR} nogui"
|
||||
else
|
||||
RUN_STRING="${JAVA_ARGS} -jar ${JAR} nogui"
|
||||
|
Loading…
x
Reference in New Issue
Block a user