Skip to content

Commit 105350f

Browse files
authored
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.
1 parent e95d77f commit 105350f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

lgsm/modules/check_executable.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77

88
moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
99

10+
# #4241 temporary fix for Satisfactory for upgrade betweern Update 7 & Update 8 - remove this once update 8 is released
11+
if [ "${shortname}" == "sf" ]; then
12+
if [ ! -f "${serverfiles}/Engine/Binaries/Linux/UE4Server-Linux-Shipping" ]; then
13+
ln -s "${serverfiles}/Engine/Binaries/Linux/UnrealServer-Linux-Shipping" "${serverfiles}/Engine/Binaries/Linux/UE4Server-Linux-Shipping"
14+
fi
15+
fi
16+
1017
# Check if executable exists
1118
execname=$(basename "${executable}")
1219
if [ ! -f "${executabledir}/${execname}" ]; then

0 commit comments

Comments
 (0)