Update mido.sh

This commit is contained in:
Kroese 2024-10-14 15:04:00 +02:00 committed by GitHub
parent e933c0acb5
commit 1659cbba42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -592,7 +592,7 @@ downloadFile() {
if [ "$total" -lt 100000000 ]; then if [ "$total" -lt 100000000 ]; then
error "Invalid download link: $url (is only $total bytes?). Please report this at $SUPPORT/issues." && return 1 error "Invalid download link: $url (is only $total bytes?). Please report this at $SUPPORT/issues." && return 1
fi fi
! verifyFile "$iso" "$size" "$total" "$sum" && return 1 verifyFile "$iso" "$size" "$total" "$sum" || return 1
html "Download finished successfully..." && return 0 html "Download finished successfully..." && return 0
fi fi