diff --git a/bin/install-toolkit b/bin/install-toolkit new file mode 100644 index 0000000..03f2d12 --- /dev/null +++ b/bin/install-toolkit @@ -0,0 +1,24 @@ +#!/usr/bin/env bash + +if echo "$OSTYPE" | grep -qE '^linux-gnu.*' && [ -f '/etc/debian_version' ]; then + IS_ANDROID=false + PKGMGR="sudo apt-get" +else + IS_ANDROID=true + PKGMGR="pkg" +fi + +## Install Python, Wget and cURL +if echo "$OSTYPE" | grep -qE '^linux-android.*'; then + $PKGMGR install python nodejs-lts nano wget git -y +else + $PKGMGR install python3 python3-dev python3-pip nano curl wget -y +fi + +## Then, install Node.js using nvm +NODEJS_INSTALL_PATH=$(command -v node)) +if [[ $NODEJS_IBSTALL_PATH == "" ]]; then + #Todo +elif + #Todo +fi