From ea19f2e5eda566bf645ed47bb48c0d4f5fb8c494 Mon Sep 17 00:00:00 2001 From: Kroese Date: Wed, 15 Jul 2026 20:09:25 +0200 Subject: [PATCH] fix: Disable debug message (#1862) --- src/mido.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/mido.sh b/src/mido.sh index dd720216..b0e10003 100644 --- a/src/mido.sh +++ b/src/mido.sh @@ -955,11 +955,10 @@ downloadImage() { sum="" size="" + # Skip verification if the retrieved URL differs from the static URL. if [[ "${MIDO_URL%%\?*}" == "${url%%\?*}" ]]; then size=$(getMido "$version" "$lang" "size") sum=$(getMido "$version" "$lang" "sum") - else - enabled "$DEBUG" && echo "Skipping verification because the retrieved URL differs from the static URL." fi tryDownload "$iso" "$MIDO_URL" "$sum" "$size" "$lang" "$desc" "$seconds" && return 0