From 497d629fdc22192f7563a6dbc90e1a56fe524531 Mon Sep 17 00:00:00 2001 From: tteckster Date: Mon, 1 Jan 2024 11:08:24 -0500 Subject: [PATCH] Update zigbee2mqtt.sh (node 18.x has stopped utilizing npm by default) - check if the installed version of Node.js is 18.x and, if so, ensures that npm is also installed. - fixes https://github.com/tteck/Proxmox/issues/2281 --- ct/zigbee2mqtt.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ct/zigbee2mqtt.sh b/ct/zigbee2mqtt.sh index 9f679fe6..abb11a3c 100644 --- a/ct/zigbee2mqtt.sh +++ b/ct/zigbee2mqtt.sh @@ -57,6 +57,13 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi + if [[ "$(node -v | cut -d 'v' -f 2)" == "18."* ]]; then + if ! command -v npm >/dev/null 2>&1; then + echo "Installing NPM..." + apt-get install -y npm >/dev/null 2>&1 + echo "Installed NPM..." + fi + fi cd /opt/zigbee2mqtt stop_zigbee2mqtt() {