Browse Source

Merge pull request #893 from DaMaxx/master

Fix for Steam Guard Authentication, possibly dirty
pull/898/head
Daniel Gibbs 9 years ago
committed by GitHub
parent
commit
eaba86d336
  1. 4
      lgsm/functions/command_validate.sh
  2. 4
      lgsm/functions/install_server_files.sh
  3. 4
      lgsm/functions/update_dl.sh

4
lgsm/functions/command_validate.sh

@ -22,9 +22,7 @@ fn_validation(){
cd "${rootdir}/steamcmd"
if [ $(command -v unbuffer) ]; then
unbuffer=unbuffer
elif [ $(command -v stdbuf) ]; then
if [ $(command -v stdbuf) ]; then
unbuffer="stdbuf -i0 -o0 -e0"
fi

4
lgsm/functions/install_server_files.sh

@ -45,9 +45,7 @@ fn_install_server_files_steamcmd(){
fi
# Detects if unbuffer command is available.
if [ $(command -v unbuffer) ]; then
unbuffer=unbuffer
elif [ $(command -v stdbuf) ]; then
if [ $(command -v stdbuf) ]; then
unbuffer="stdbuf -i0 -o0 -e0"
fi

4
lgsm/functions/update_dl.sh

@ -14,9 +14,7 @@ fn_steamcmd_dl(){
cd "steamcmd"
# Detects if unbuffer command is available.
if [ $(command -v unbuffer) ]; then
unbuffer=unbuffer
elif [ $(command -v stdbuf) ]; then
if [ $(command -v stdbuf) ]; then
unbuffer="stdbuf -i0 -o0 -e0"
fi

Loading…
Cancel
Save