1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-05 12:03:00 +02:00

Correctly test for steamcmd

This commit is contained in:
aclist 2022-01-21 05:42:56 +09:00 committed by GitHub
parent b369266803
commit cf2555bf5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -182,7 +182,7 @@ move_files(){
rm -r "$staging_dir"/steamapps rm -r "$staging_dir"/steamapps
} }
auto_mod_download(){ auto_mod_download(){
sudo -u $steamcmd_user steamcmd "steamcmd +force_install_dir $staging_dir +login $steam_username $(steamcmd_modlist) +quit" sudo su -c "steamcmd +force_install_dir $staging_dir +login $steam_username $(steamcmd_modlist) +quit" $steamcmd_user
[[ "$(ls -A $staging_dir/steamapps)" ]] && move_files || return 1 [[ "$(ls -A $staging_dir/steamapps)" ]] && move_files || return 1
} }
auto_mod_install(){ auto_mod_install(){
@ -196,7 +196,7 @@ auto_mod_install(){
elif elif
command -v steamcmd &>/dev/null command -v steamcmd &>/dev/null
[[ $? -eq 1 ]]; then [[ $? -eq 1 ]]; then
err "steamcmd not found. See: https://developer.valvesoftware.com/wiki/SteamCMD" err "steamcmd not installed. See: https://developer.valvesoftware.com/wiki/SteamCMD"
else else
printf "[INFO] Found steamcmd user. Downloading mods\n" printf "[INFO] Found steamcmd user. Downloading mods\n"
revert_msg="Something went wrong. Reverting to manual mode" revert_msg="Something went wrong. Reverting to manual mode"