From d50347d6677eeeea5438e732cf1398effc30f3ab Mon Sep 17 00:00:00 2001 From: BTC-Tim <70333149+BTC-Tim@users.noreply.github.com> Date: Thu, 15 Jan 2026 22:12:11 +0100 Subject: [PATCH] Fix: Correctly detect macOS group in install.sh (#619) --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index f7ac2c9..d13ffae 100644 --- a/install.sh +++ b/install.sh @@ -15,7 +15,7 @@ done OS= case "$(uname -s)" in Linux) OS="linux" ;; -Darwin) OS="Darwin" ;; +Darwin) OS="darwin" ;; *) echo "OS not supported." exit 2