From 83bd66db98e4bab629f29d6d74365e7a5eeaba6a Mon Sep 17 00:00:00 2001 From: DerLinkman Date: Tue, 13 Dec 2022 11:52:04 +0100 Subject: [PATCH] [Update.sh] Increased Timeout for online status check --- update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.sh b/update.sh index 3eca2ea6f..34d173540 100755 --- a/update.sh +++ b/update.sh @@ -5,7 +5,7 @@ check_online_status() { CHECK_ONLINE_DOMAINS=('https://github.com' 'https://hub.docker.com') for domain in "${CHECK_ONLINE_DOMAINS[@]}"; do - if timeout 3 curl --head --silent --output /dev/null ${domain}; then + if timeout 6 curl --head --silent --output /dev/null ${domain}; then return 0 fi done