Fix warning in runSteamCMDspinner

This commit is contained in:
Ben Peddell 2016-05-30 02:27:37 +10:00
parent 0be8a67ba0
commit e2c3fa3c68

View File

@ -386,7 +386,7 @@ function runSteamCMDspinner(){
progressDisplayType=dots
fi
fi
if command >&3; then
if (command >&3) 2>/dev/null; then
runSteamCMD "$@" >&3 &
else
runSteamCMD "$@" >/dev/null &