Browse Source

feat: Add temporary fix for Satisfactory upgrade (#4243)

This commit adds a temporary fix for upgrading Satisfactory from Update 7 to Update 8. A symlink is created between UnrealServer-Linux-Shipping and UE4Server-Linux-Shipping until the update is released.
pull/4245/head
Daniel Gibbs 2 years ago
committed by GitHub
parent
commit
105350fbe3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      lgsm/modules/check_executable.sh

7
lgsm/modules/check_executable.sh

@ -7,6 +7,13 @@
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# #4241 temporary fix for Satisfactory for upgrade betweern Update 7 & Update 8 - remove this once update 8 is released
if [ "${shortname}" == "sf" ]; then
if [ ! -f "${serverfiles}/Engine/Binaries/Linux/UE4Server-Linux-Shipping" ]; then
ln -s "${serverfiles}/Engine/Binaries/Linux/UnrealServer-Linux-Shipping" "${serverfiles}/Engine/Binaries/Linux/UE4Server-Linux-Shipping"
fi
fi
# Check if executable exists
execname=$(basename "${executable}")
if [ ! -f "${executabledir}/${execname}" ]; then

Loading…
Cancel
Save