From da734d1ffc53febf2d859b9fb4014f685535d04e Mon Sep 17 00:00:00 2001 From: Codex Agent Date: Sun, 14 Dec 2025 09:16:11 +0100 Subject: [PATCH] Fallback to Robust.Server when Watchdog absent --- start.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/start.sh b/start.sh index c24e5cc..b9ad86b 100644 --- a/start.sh +++ b/start.sh @@ -14,7 +14,9 @@ if [ -x "./SS14.Watchdog" ]; then elif [ -d "./SS14.Watchdog" ] && [ -x "./SS14.Watchdog/SS14.Watchdog" ]; then cd ./SS14.Watchdog || exit 1 exec ./SS14.Watchdog "$@" +elif [ -x "./Robust.Server" ]; then + exec ./Robust.Server "$@" else - echo "SS14.Watchdog executable not found in /ss14/publish" >&2 + echo "No SS14.Watchdog or Robust.Server executable found in /ss14/publish" >&2 exit 1 fi