Update install.sh

This commit is contained in:
2025-10-15 19:36:44 +00:00
parent b7c01210c2
commit 1decbc1484

View File

@@ -1,7 +1,8 @@
#!/bin/bash
OS_TYPE=$(uname -s)
isLinux="$OS_TYPE" = "Linux"
OS_TYPE = $(uname -s)
isLinux = "$OS_TYPE" == "Linux"
isMacOs = "$OS_TYPE" == "Linux"
if [ isLinux ]; then
echo "Running on Linux"
elif [ "$OS_TYPE" = "Darwin" ]; then