From e4ab054554545f98c252a678a331648754e0ab0f Mon Sep 17 00:00:00 2001 From: Robert Thomas <31854736+wolveix@users.noreply.github.com> Date: Wed, 20 Sep 2023 18:40:38 +0100 Subject: [PATCH] Fix missing `=` from `run.sh` from previous commit --- run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index 3febfd1..4f385d7 100755 --- a/run.sh +++ b/run.sh @@ -118,7 +118,7 @@ else fi if [ -n "$SERVERIP" ]; then - SERVERIP="-multihome \"$SERVERIP\"" + SERVERIP="-multihome=\"$SERVERIP\"" fi if ! [[ "${SKIPUPDATE,,}" == "true" ]]; then @@ -179,4 +179,4 @@ fi cd /config/gamefiles || exit 1 -exec ./FactoryServer.sh -Port="$SERVERGAMEPORT" -BeaconPort="$SERVERBEACONPORT" -ServerQueryPort="$SERVERQUERYPORT" $SERVERIP "$@" \ No newline at end of file +exec ./FactoryServer.sh -Port="$SERVERGAMEPORT" -BeaconPort="$SERVERBEACONPORT" -ServerQueryPort="$SERVERQUERYPORT" $SERVERIP "$@"