From f3c76d7887d729e978b59570a449eceefadf3929 Mon Sep 17 00:00:00 2001 From: jonathan Date: Wed, 15 Oct 2025 19:30:35 +0000 Subject: [PATCH] Add install.sh --- install.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 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