Update mido.sh

This commit is contained in:
Kroese 2025-04-20 23:09:30 +02:00 committed by GitHub
parent af7d703d89
commit 77bdc3c4eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -562,7 +562,14 @@ downloadFile() {
info "$msg..." info "$msg..."
case "${domain,,}" in
*"archive.org" )
{ wget2 "$url" -O "$iso" -q --timeout=30 --user-agent "$agent" --force-progress "$progress"; rc=$?; } || :
;;
* )
{ wget "$url" -O "$iso" -q --timeout=30 --no-http-keep-alive --user-agent "$agent" --show-progress "$progress"; rc=$?; } || : { wget "$url" -O "$iso" -q --timeout=30 --no-http-keep-alive --user-agent "$agent" --show-progress "$progress"; rc=$?; } || :
;;
esac
fKill "progress.sh" fKill "progress.sh"