From e9d9d03aa8b24634fad91241cf32c0fd75e1e61f Mon Sep 17 00:00:00 2001 From: HydroshieldMKII Date: Tue, 30 Sep 2025 17:15:40 -0400 Subject: [PATCH] Refactor guardian-install.sh to streamline dependency installation by removing npm and ensuring proper package installation order --- install/guardian-install.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/install/guardian-install.sh b/install/guardian-install.sh index 876260cc..eb314f21 100644 --- a/install/guardian-install.sh +++ b/install/guardian-install.sh @@ -16,11 +16,14 @@ 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"