From f72756edb4f94baae75fecb94c222cb3f1aad55a Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 31 Aug 2023 22:42:13 +0100 Subject: [PATCH] feat: add fn_login_steamcmd_nopass function This commit adds the `fn_login_steamcmd_nopass` function to the core_steamcmd.sh module. This function is called in the `fn_update_steamcmd_remotebuild` function and handles logging into SteamCMD without a password. The purpose of this change is to improve the login process for SteamCMD when updating remote builds. --- lgsm/modules/core_steamcmd.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lgsm/modules/core_steamcmd.sh b/lgsm/modules/core_steamcmd.sh index f0dfffbe0..d95804074 100644 --- a/lgsm/modules/core_steamcmd.sh +++ b/lgsm/modules/core_steamcmd.sh @@ -193,6 +193,8 @@ fn_update_steamcmd_remotebuild() { find "${HOME}" -type f -name "appinfo.vdf" -exec rm -f {} \; 2> /dev/null fi + fn_login_steamcmd_nopass + # password for branch not needed to check the buildid remotebuildversion=$(${steamcmdcommand} +login "${steamuser}" +app_info_update 1 +app_info_print "${appid}" +quit | sed -e '/"branches"/,/^}/!d' | sed -n "/\"${branch}\"/,/}/p" | grep -m 1 buildid | tr -cd '[:digit:]')