fix: Remove obsolete debug message

This commit is contained in:
Kroese 2025-10-02 17:44:15 +02:00 committed by GitHub
parent 70380d8cfc
commit a63ca73ba2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -171,8 +171,6 @@ download_windows() {
return 1 return 1
fi fi
[[ "$DEBUG" == [Yy1]* ]] && echo "Found download link: $iso_download_link"
MIDO_URL="$iso_download_link" MIDO_URL="$iso_download_link"
return 0 return 0
} }
@ -309,17 +307,19 @@ download_windows_eval() {
return $? return $?
} }
[[ "$DEBUG" == [Yy1]* ]] && echo "Found download link: $iso_download_link"
case "${PLATFORM,,}" in case "${PLATFORM,,}" in
"x64" ) "x64" )
if [[ "${iso_download_link,,}" != *"x64"* ]]; then if [[ "${iso_download_link,,}" != *"x64"* ]]; then
error "Download link is for the wrong platform? Please report this at $SUPPORT/issues" echo "Found download link: $iso_download_link"
error "Download link is for the wrong platform? Please report this at $SUPPORT/issues"
return 1 return 1
fi ;; fi ;;
"arm64" ) "arm64" )
if [[ "${iso_download_link,,}" != *"a64"* && "${iso_download_link,,}" != *"arm64"* ]]; then if [[ "${iso_download_link,,}" != *"a64"* && "${iso_download_link,,}" != *"arm64"* ]]; then
[[ "$DEBUG" == [Yy1]* ]] && echo "Link for ARM platform currently not available!" if [[ "$DEBUG" == [Yy1]* ]]; then
echo "Found download link: $iso_download_link"
echo "Link for ARM platform currently not available!"
fi
return 1 return 1
fi ;; fi ;;
esac esac