From cf4d9e4f9e666a13bf3db80a0af725664414fec6 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sat, 4 May 2024 17:16:47 +0200 Subject: [PATCH] fix: Set download timeout (#56) --- src/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install.sh b/src/install.sh index ab476c1..ae36972 100644 --- a/src/install.sh +++ b/src/install.sh @@ -32,7 +32,7 @@ MSG="Downloading $BASE..." info "$MSG" && html "$MSG" /run/progress.sh "$TMP" "" "Downloading $BASE ([P])..." & -{ wget "$BOOT" -O "$TMP" -q --no-check-certificate --show-progress "$PROGRESS"; rc=$?; } || : +{ wget "$BOOT" -O "$TMP" -q --timeout=10 --show-progress "$PROGRESS"; rc=$?; } || : fKill "progress.sh"