Update .local/bin/provision
This commit is contained in:
parent
85307910fa
commit
0acf81202a
1 changed files with 4 additions and 0 deletions
|
@ -107,12 +107,16 @@ elif [ -d /Applications ] && [ -d /Library ]; then
|
||||||
sudo xcode-select -p >/dev/null 2>&1 || xcode-select --install
|
sudo xcode-select -p >/dev/null 2>&1 || xcode-select --install
|
||||||
elif command -v nix-env > /dev/null; then
|
elif command -v nix-env > /dev/null; then
|
||||||
# NixOS
|
# NixOS
|
||||||
|
echo "TODO - Add support for NixOS"
|
||||||
elif [[ "$OSTYPE" == 'freebsd'* ]]; then
|
elif [[ "$OSTYPE" == 'freebsd'* ]]; then
|
||||||
# FreeBSD
|
# FreeBSD
|
||||||
|
echo "TODO - Add support for FreeBSD"
|
||||||
elif command -v pkg > /dev/null; then
|
elif command -v pkg > /dev/null; then
|
||||||
# Termux
|
# Termux
|
||||||
|
echo "TODO - Add support for Termux"
|
||||||
elif command -v xbps-install > /dev/null; then
|
elif command -v xbps-install > /dev/null; then
|
||||||
# Void
|
# Void
|
||||||
|
echo "TODO - Add support for Void"
|
||||||
elif [[ "$OSTYPE" == 'cygwin' ]] || [[ "$OSTYPE" == 'msys' ]] || [[ "$OSTYPE" == 'win32' ]]; then
|
elif [[ "$OSTYPE" == 'cygwin' ]] || [[ "$OSTYPE" == 'msys' ]] || [[ "$OSTYPE" == 'win32' ]]; then
|
||||||
# Windows
|
# Windows
|
||||||
choco install -y curl git node
|
choco install -y curl git node
|
||||||
|
|
Loading…
Reference in a new issue