* stbuf will no longer be used on x64 #991
@ -61,8 +61,9 @@ fn_install_server_files_steamcmd(){
check_steamcmd.sh
fi
# Detects if unbuffer command is available.
# Detects if unbuffer command is available for 32 bit distributions only.
if [ $(command -v stdbuf) ]; then
info_distro.sh
if [ $(command -v stdbuf) ]&&[ "${arch}" != "x86_64" ]; then
unbuffer="stdbuf -i0 -o0 -e0"
@ -19,8 +19,9 @@ fn_update_steamcmd_dl(){
cd "${rootdir}/steamcmd"