Refactor guardian-install.sh to streamline dependency installation by removing npm and ensuring proper package installation order

This commit is contained in:
HydroshieldMKII 2025-09-30 17:15:40 -04:00
parent a4cc08a194
commit e9d9d03aa8

View File

@ -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"