Browse Source

fix(untserver): fix steamclient.so issue (#3038)

pull/3047/head
Christian 5 years ago
committed by GitHub
parent
commit
c205e26faf
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      lgsm/functions/fix_unt.sh

14
lgsm/functions/fix_unt.sh

@ -6,5 +6,17 @@
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# copy steamclient to server dir to fix the below
if [ ! -f "${serverfiles}/steamclient.so" ]; then
fixname="steamclient.so x86_64"
fn_fix_msg_start
if [ -f "${HOME}/.steam/steamcmd/linux64/steamclient.so" ]; then
cp "${HOME}/.steam/steamcmd/linux64/steamclient.so" "${serverfiles}/steamclient.so" >> "${lgsmlog}"
elif [ -f "${steamcmddir}/linux64/steamclient.so" ]; then
cp "${steamcmddir}/linux64/steamclient.so" "${serverfiles}/steamclient.so" >> "${lgsmlog}"
fi
fn_fix_msg_end
fi
# steamclient.so: cannot open shared object file: No such file or directory
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${serverfiles}:${serverfiles}/linux64"
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${serverfiles}"

Loading…
Cancel
Save