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 20:29:23 -06:00
committed by GitHub
parent cf1ccdc554
commit ae5343a781
+7
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