commit f3c76d7887d729e978b59570a449eceefadf3929 Author: jonathan Date: Wed Oct 15 19:30:35 2025 +0000 Add install.sh diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..5b5f6a6 --- /dev/null +++ b/install.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +OS_TYPE=$(uname -s) +isLinux="$OS_TYPE" = "Linux" +if [ isLinux ]; then + echo "Running on Linux" +elif [ "$OS_TYPE" = "Darwin" ]; then + echo "Running on macOS" +else + echo "Unsupported OS family: $OS_TYPE" + exit 1 +fi \ No newline at end of file