Update install.sh

This commit is contained in:
2025-10-15 19:48:14 +00:00
parent 5d2a7d5ce3
commit 80a0ecf4b7

View File

@@ -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"