From 118680a58d95f17e307ad469cb159e397691f490 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 21 Mar 2021 11:49:07 +0000 Subject: [PATCH] Fix launch-dedicated server check. --- launch-dedicated.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launch-dedicated.sh b/launch-dedicated.sh index afd4284..97201e8 100755 --- a/launch-dedicated.sh +++ b/launch-dedicated.sh @@ -57,7 +57,7 @@ SHARE_ANONYMISED_IPS="${ShareAnonymizedIPs:-"True"}" SUPPORT_DIR="${SupportDir:-""}" cd "${TEMPLATE_ROOT}" -if [ ! -f "${ENGINE_DIRECTORY}/OpenRA.Game.exe" ] || [ "$(cat "${ENGINE_DIRECTORY}/VERSION")" != "${ENGINE_VERSION}" ]; then +if [ ! -f "${ENGINE_DIRECTORY}/bin/OpenRA.Server.exe" ] || [ "$(cat "${ENGINE_DIRECTORY}/VERSION")" != "${ENGINE_VERSION}" ]; then echo "Required engine files not found." echo "Run \`make\` in the mod directory to fetch and build the required files, then try again."; exit 1