From b6394fe8a0d1815f56282f574f9f4aab4cd84b1b Mon Sep 17 00:00:00 2001 From: Benjamin Date: Sun, 23 Nov 2025 12:03:39 -0500 Subject: [PATCH] Fix pattern matching for recovery ISO files in install.sh to ensure correct detection of recovery images. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 4db9e78..1d19431 100755 --- a/install.sh +++ b/install.sh @@ -73,7 +73,7 @@ ensure_boot_media_ready() { return 1 fi - if ! compgen -G "${iso_dir}/recovery-"*.iso >/dev/null 2>&1; then + if ! compgen -G "${iso_dir}/recovery-*.iso" >/dev/null 2>&1; then log_message "No recovery ISO found in '$iso_dir'. Run setup option '101/102 - Download & Create Recovery Image' for your macOS version." return 1 fi