From b2efe25260de6694df23b0fffc82adfc6e2d84cf Mon Sep 17 00:00:00 2001 From: Willy Sudiarto Raharjo Date: Tue, 22 May 2018 18:13:42 +0700 Subject: [PATCH] sbopkg: Increase timeout. Fix #43. Signed-off-by: Willy Sudiarto Raharjo --- src/usr/sbin/sbopkg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/usr/sbin/sbopkg b/src/usr/sbin/sbopkg index c59bb7b..2924b76 100755 --- a/src/usr/sbin/sbopkg +++ b/src/usr/sbin/sbopkg @@ -4105,11 +4105,11 @@ check_for_latest() { local ORIGSCR=https://www.sbopkg.org/currentversion local CVRS=$SBOVER - local NVRS=$(wget -T 10 -q -O - $ORIGSCR) + local NVRS=$(wget -T 20 -q -O - $ORIGSCR) local NEWPKG=https://www.sbopkg.org/currentpackage - local NEWSBOPKG=$(wget -T 10 -q -O - $NEWPKG) + local NEWSBOPKG=$(wget -T 20 -q -O - $NEWPKG) local NEWDL=https://www.sbopkg.org/currentdownload - local NEWDLPKG=$(wget -T 10 -q -O - $NEWDL) + local NEWDLPKG=$(wget -T 20 -q -O - $NEWDL) local SBOPKGUP MSG REPLY if [[ -z $CVRS || -z $NVRS ]]; then