From ae5343a781d4e1f4eab71fe4aa759ccd3466639d Mon Sep 17 00:00:00 2001 From: Luna <96448399+DaOneLuna@users.noreply.github.com> Date: Fri, 9 Dec 2022 18:29:23 -0800 Subject: [PATCH] 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 --- install-gui.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/install-gui.sh b/install-gui.sh index 278d156ca8..c0af421a90 100755 --- a/install-gui.sh +++ b/install-gui.sh @@ -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