Add Arch Linux to install-gui.sh script (#14059)

* Add Arch Linux to install script

Install-gui.sh will now install nodejs and npm on Arch Linux

* Removed the 'y' in the pacman install command

Removed the 'y' in the pacman install command
This commit is contained in:
Luna 2022-12-09 18:29:23 -08:00 committed by GitHub
parent cf1ccdc554
commit ae5343a781
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -148,6 +148,13 @@ if [ "$(uname)" = "Linux" ]; then
sudo dnf install -y nodejs
fi
do_install_npm_locally
elif type pacman >/dev/null 2>&1 && [ -f /etc/arch-release ]; then
#Arch Linux
if ! nodejs_is_installed; then
echo "Installing nodejs on Arch Linux"
sudo pacman -S nodejs npm
fi
do_install_npm_locally
fi
elif [ "$(uname)" = "Darwin" ] && type brew >/dev/null 2>&1; then
# MacOS