From 8a3e67dc6261945ee87bf96f1bc87c15fdbe36f0 Mon Sep 17 00:00:00 2001 From: Albin Vass Date: Sat, 7 Nov 2020 03:26:07 +0100 Subject: [PATCH] install-js-tools: add support for manjaro Change-Id: Ia7041423eb0bd5b688c149e70fd06373251e9ced --- tools/install-js-tools.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/install-js-tools.sh b/tools/install-js-tools.sh index cdfa196756..1044034221 100755 --- a/tools/install-js-tools.sh +++ b/tools/install-js-tools.sh @@ -42,6 +42,8 @@ elif type zypper; then $SUDO npm install yarn elif type brew; then brew install nodejs yarn +elif type pamac; then + $SUDO pamac install nodejs yarn --no-confirm else echo "Unsupported platform" fi