|
@ -26,9 +26,9 @@ fn_update_steamcmd_dl(){ |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
if [ "${engine}" == "goldsource" ]; then |
|
|
if [ "${engine}" == "goldsource" ]; then |
|
|
${unbuffer} ./steamcmd.sh +login "${steamuser}" '${steampass}' +force_install_dir "${filesdir}" +app_set_config 90 mod ${appidmod} +app_update "${appid}" ${branch} +quit | tee -a "${scriptlog}" |
|
|
${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_set_config 90 mod ${appidmod} +app_update "${appid}" ${branch} +quit | tee -a "${scriptlog}" |
|
|
else |
|
|
else |
|
|
${unbuffer} ./steamcmd.sh +login "${steamuser}" '${steampass}' +force_install_dir "${filesdir}" +app_update "${appid}" ${branch} +quit | tee -a "${scriptlog}" |
|
|
${unbuffer} ./steamcmd.sh +login "${steamuser}" "${steampass}" +force_install_dir "${filesdir}" +app_update "${appid}" ${branch} +quit | tee -a "${scriptlog}" |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
fix.sh |
|
|
fix.sh |
|
@ -156,7 +156,7 @@ fn_update_steamcmd_check(){ |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
# Gets availablebuild info |
|
|
# Gets availablebuild info |
|
|
availablebuild=$(./steamcmd.sh +login "${steamuser}" '${steampass}' +app_info_update 1 +app_info_print "${appid}" +app_info_print "${appid}" +quit | grep -EA 1000 "^\s+\"branches\"$" | grep -EA 5 "^\s+\"${branchname}\"$" | grep -m 1 -EB 10 "^\s+}$" | grep -E "^\s+\"buildid\"\s+" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3) |
|
|
availablebuild=$(./steamcmd.sh +login "${steamuser}" "${steampass}" +app_info_update 1 +app_info_print "${appid}" +app_info_print "${appid}" +quit | grep -EA 1000 "^\s+\"branches\"$" | grep -EA 5 "^\s+\"${branchname}\"$" | grep -m 1 -EB 10 "^\s+}$" | grep -E "^\s+\"buildid\"\s+" | tr '[:blank:]"' ' ' | tr -s ' ' | cut -d\ -f3) |
|
|
if [ -z "${availablebuild}" ]; then |
|
|
if [ -z "${availablebuild}" ]; then |
|
|
fn_print_fail "Checking for update: SteamCMD" |
|
|
fn_print_fail "Checking for update: SteamCMD" |
|
|
sleep 1 |
|
|
sleep 1 |
|
|