Browse Source

Use unbuffer if present first, then try stdbuf

pull/834/head
cedarlug 9 years ago
parent
commit
be315b3b3d
  1. 6
      lgsm/functions/command_validate.sh
  2. 6
      lgsm/functions/install_server_files.sh
  3. 4
      lgsm/functions/update_dl.sh

6
lgsm/functions/command_validate.sh

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

6
lgsm/functions/install_server_files.sh

@ -43,10 +43,10 @@ fn_install_server_files_steamcmd(){
fi
# Detects if unbuffer command is available.
if [ $(command -v stdbuf) ]; then
unbuffer="stdbuf -i0 -o0 -e0"
elif [ $(command -v unbuffer) ]; then
if [ $(command -v unbuffer) ]; then
unbuffer=unbuffer
elif [ $(command -v stdbuf) ]; then
unbuffer="stdbuf -i0 -o0 -e0"
fi
if [ "${counter}" -le "4" ]; then

4
lgsm/functions/update_dl.sh

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

Loading…
Cancel
Save