From 724e305bd9e89708d8d58effffc8802b75e3623b Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 5 Mar 2025 10:40:52 +0100 Subject: [PATCH] Update mido.sh --- src/mido.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mido.sh b/src/mido.sh index 7fed9c4..62e088b 100644 --- a/src/mido.sh +++ b/src/mido.sh @@ -476,7 +476,7 @@ verifyFile() { local check="$4" if [ -n "$size" ] && [[ "$total" != "$size" ]] && [[ "$size" != "0" ]]; then - warn "The downloaded file has an unexpected size: $total bytes, while expected value was: $size bytes. Please report this at $SUPPORT/issues" + warn "The downloaded file has a different size ( $total bytes) than expected ( $size bytes). Please report this at $SUPPORT/issues" fi local hash="" @@ -499,7 +499,7 @@ verifyFile() { info "Succesfully verified ISO!" && return 0 fi - error "The downloaded file has an invalid $algo checksum: $hash , while expected value was: $check. Please report this at $SUPPORT/issues" + error "The downloaded file has an unknown $algo checksum: $hash , while expected value was: $check. Please report this at $SUPPORT/issues" return 1 }