From aa2649a9337e6cb08d4fd5363024b730b2016316 Mon Sep 17 00:00:00 2001 From: HydroshieldMKII Date: Tue, 30 Sep 2025 17:34:25 -0400 Subject: [PATCH] Refactor guardian-install.sh to remove npm installation and ensure proper dependency setup --- install/guardian-install.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/install/guardian-install.sh b/install/guardian-install.sh index ad623502..de05a8e8 100644 --- a/install/guardian-install.sh +++ b/install/guardian-install.sh @@ -16,11 +16,15 @@ update_os msg_info "Installing Dependencies" $STD apt-get install -y \ git \ - nodejs \ - npm \ sqlite3 \ unzip \ - curl + curl \ + ca-certificates \ + gnupg + +curl -fsSL https://deb.nodesource.com/setup_24.x | bash - +$STD apt-get install -y nodejs + msg_ok "Installed Dependencies" msg_info "Setup Guardian"