Unverified Commit 55fb3696 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

fix: Set download timeout (#488)

parent 71a0aaf3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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"