From 305760ba536723684306c4a6ebcdba742414e570 Mon Sep 17 00:00:00 2001 From: GregcodeOhm Date: Tue, 24 Mar 2026 01:57:16 +0100 Subject: [PATCH] fix: add missing 'then' in Python version check (install_mac.sh) The if/fi block at line 111 was missing the 'then' keyword, causing a syntax error that breaks the installer after the Homebrew step. Co-Authored-By: Claude Opus 4.6 --- install_mac.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install_mac.sh b/install_mac.sh index 1f47d8e..032e8d7 100755 --- a/install_mac.sh +++ b/install_mac.sh @@ -109,6 +109,7 @@ echo py_version=$(python3 --version | egrep -o '([0-9]+\.[0-9]+)') if [ "$py_version" != "3.10" -a "$py_version" != "3.11" -a "$py_version" != "3.12" -a "$py_version" != "3.13" ] +then finish_error "Not Python 3.10, 3.11, 3.12 or 3.13 (but $py_version) !" fi PYTHON_CMD="python3"