From 80a0ecf4b7459e5d464e06c121efa690e7eee164 Mon Sep 17 00:00:00 2001 From: jonathan Date: Wed, 15 Oct 2025 19:48:14 +0000 Subject: [PATCH] Update install.sh --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 2cf90c7..17a0851 100644 --- a/install.sh +++ b/install.sh @@ -4,9 +4,9 @@ OS_TYPE=$(uname -s) isLinux=${OS_TYPE} == "Linux" isMacOS=${OS_TYPE} == "Darwin" -if [ "$isLinux" ]; then +if [[ "$isLinux" ]]; then echo "Running on Linux" -elif [ "$isMacOS" ]; then +elif [[ "$isMacOS" ]]; then echo "Running on macOS" else echo "Unsupported OS family: $OS_TYPE"