Fix: Correctly detect macOS group in install.sh (#619)

This commit is contained in:
BTC-Tim
2026-01-15 22:12:11 +01:00
committed by GitHub
parent c035139b54
commit d50347d667

View File

@@ -15,7 +15,7 @@ done
OS= OS=
case "$(uname -s)" in case "$(uname -s)" in
Linux) OS="linux" ;; Linux) OS="linux" ;;
Darwin) OS="Darwin" ;; Darwin) OS="darwin" ;;
*) *)
echo "OS not supported." echo "OS not supported."
exit 2 exit 2