From a038af89b97d58a2e07b002ace53ef20c7f8ea8d Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 22 Sep 2025 08:21:42 +0200 Subject: [PATCH] fix: Syntax error in conditional statement --- src/mido.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mido.sh b/src/mido.sh index a2f7776..9edaf49 100644 --- a/src/mido.sh +++ b/src/mido.sh @@ -403,7 +403,7 @@ getCatalog() { local edition="" local file="catalog.cab" - if [[ "${id,,}" == "win11"* && "${PLATFORM,,}" != "x64" && "${ARCH,,}" == "arm64" ]]; + if [[ "${id,,}" == "win11"* && "${PLATFORM,,}" != "x64" && "${ARCH,,}" == "arm64" ]]; then # ARMv8.0 cannot run Windows 11 builds higher than 22631 if ! grep -qw 'Features.*atomics' /proc/cpuinfo; then echo $(getBuild "$1" "$2" "22631.2861") && return 0