Delete install.sh

This commit is contained in:
2025-10-15 20:32:40 +00:00
parent b82b6c2790
commit 00678605c1

View File

@@ -1,14 +0,0 @@
#!/bin/bash
OS_TYPE=$(uname -s)
isLinux=${OS_TYPE} == "Linux"
isMacOS=${OS_TYPE} == "Darwin"
if [[ "$isLinux" ]]; then
echo "Running on Linux"
elif [[ "$isMacOS" ]]; then
echo "Running on macOS"
else
echo "Unsupported OS family: $OS_TYPE"
exit 1
fi