Browse Source

Fixes #991 (#1165)

* stbuf will no longer be used on x64 #991
pull/1172/head
UltimateByte 9 years ago
committed by Daniel Gibbs
parent
commit
f7a2ec60fc
  1. 7
      lgsm/functions/install_server_files.sh
  2. 5
      lgsm/functions/update_steamcmd.sh

7
lgsm/functions/install_server_files.sh

@ -61,8 +61,9 @@ fn_install_server_files_steamcmd(){
check_steamcmd.sh
fi
# Detects if unbuffer command is available.
if [ $(command -v stdbuf) ]; then
# Detects if unbuffer command is available for 32 bit distributions only.
info_distro.sh
if [ $(command -v stdbuf) ]&&[ "${arch}" != "x86_64" ]; then
unbuffer="stdbuf -i0 -o0 -e0"
fi
@ -134,4 +135,4 @@ if [ -z "${autoinstall}" ]; then
* ) echo "Please answer yes or no.";;
esac
done
fi
fi

5
lgsm/functions/update_steamcmd.sh

@ -19,8 +19,9 @@ fn_update_steamcmd_dl(){
cd "${rootdir}/steamcmd"
# Detects if unbuffer command is available.
if [ $(command -v stdbuf) ]; then
# Detects if unbuffer command is available for 32 bit distributions only.
info_distro.sh
if [ $(command -v stdbuf) ]&&[ "${arch}" != "x86_64" ]; then
unbuffer="stdbuf -i0 -o0 -e0"
fi

Loading…
Cancel
Save