Browse Source

fix(update): allow steamcmd to check for update on beta branches (#2960)

pull/2963/head
Daniel Gibbs 5 years ago
committed by GitHub
parent
commit
edacc33618
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      lgsm/functions/update_steamcmd.sh

7
lgsm/functions/update_steamcmd.sh

@ -43,7 +43,12 @@ fn_update_steamcmd_remotebuild(){
find "${HOME}" -type f -name "appinfo.vdf" -exec rm -f {} \; find "${HOME}" -type f -name "appinfo.vdf" -exec rm -f {} \;
fi fi
remotebuild=$(${steamcmdcommand} +login "${steamuser}" "${steampass}" +app_info_update 1 +app_info_print "${appid}" +quit | sed '1,/branches/d' | sed "1,/${branchname}/d" | grep -m 1 buildid | tr -cd '[:digit:]') if [ -n "${branch}" ]; then
remotebuild=$(${steamcmdcommand} +login "${steamuser}" "${steampass}" +app_info_update 1 +app_info_print "${appid}" -beta "${branch}" +quit | sed '1,/branches/d' | sed "1,/${branchname}/d" | grep -m 1 buildid | tr -cd '[:digit:]')
else
remotebuild=$(${steamcmdcommand} +login "${steamuser}" "${steampass}" +app_info_update 1 +app_info_print "${appid}" +quit | sed '1,/branches/d' | sed "1,/${branchname}/d" | grep -m 1 buildid | tr -cd '[:digit:]')
fi
if [ "${installer}" != "1" ]; then if [ "${installer}" != "1" ]; then
fn_print_dots "Checking remote build: ${remotelocation}" fn_print_dots "Checking remote build: ${remotelocation}"
# Checks if remotebuild variable has been set. # Checks if remotebuild variable has been set.

Loading…
Cancel
Save