Put placeholder for per-platform installers

This commit is contained in:
2024-03-13 05:50:54 +08:00
parent e1c9afccf4
commit b141fdc91e

View File

@@ -24,4 +24,12 @@ fi
echo "Set pwd to $APP_DIR" echo "Set pwd to $APP_DIR"
cd "$APP_DIR" cd "$APP_DIR"
APP_DIR="$(pwd)" APP_DIR="$(pwd)"
if [ "$(uname)" == "Linux" ]; then
# TODO: add support for different distributions
./install-ubuntu.sh ./install-ubuntu.sh
elif [ "$(uname)" == "Darwin" ]; then
echo TODO: install-macos.sh
else
echo Unsupported environment, need to manual install
fi