From 583da2fe0bd6fb344a2f68297d6833d9c78bd6c2 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Tue, 6 Jan 2015 19:57:55 +0000 Subject: [PATCH] Fixed issue #260 On retry counter=11 rather than 0. Changed the loop and resets counter to 0 on retry --- functions/fn_steaminstall | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/functions/fn_steaminstall b/functions/fn_steaminstall index 8f773cdac..fb3f91e0e 100644 --- a/functions/fn_steaminstall +++ b/functions/fn_steaminstall @@ -2,10 +2,11 @@ # LGSM fn_steaminstall function # Author: Daniel Gibbs # Website: http://danielgibbs.co.uk -# Version: 040115 +# Version: 060115 fn_steaminstallcommand(){ -while [ -z "${counter}" ]||[ "$(grep -wc 0x402 .fn_steaminstall.tmp)" -ge "1" ]||[ "$(grep -wc 0x406 .fn_steaminstall.tmp)" -ge "1" ]||[ "$(grep -wc 0x6 .fn_steaminstall.tmp)" -ge "1" ]||[ "$(grep -wc 0x106 .fn_steaminstall.tmp)" -ge "1" ]; do +counter="0" +while [ "${counter}" == "0" ]||[ "$(grep -wc 0x402 .fn_steaminstall.tmp)" -ge "1" ]||[ "$(grep -wc 0x406 .fn_steaminstall.tmp)" -ge "1" ]||[ "$(grep -wc 0x6 .fn_steaminstall.tmp)" -ge "1" ]||[ "$(grep -wc 0x106 .fn_steaminstall.tmp)" -ge "1" ]; do counter=$((counter+1)) if [ "${counter}" -le "10" ]; then if [ "${counter}" -ge "2" ]; then @@ -16,6 +17,7 @@ while [ -z "${counter}" ]||[ "$(grep -wc 0x402 .fn_steaminstall.tmp)" -ge "1" ]| fn_printfailurenl "SteamCMD did not complete the download, too many retrys" break fi + echo "0x402" > .fn_steaminstall.tmp done rm -f .fn_steaminstall.tmp }