Refactor guardian-install.sh to remove npm installation and ensure proper dependency setup

This commit is contained in:
HydroshieldMKII 2025-09-30 17:34:25 -04:00
parent b4646fbd78
commit aa2649a933

View File

@ -16,11 +16,15 @@ update_os
msg_info "Installing Dependencies" msg_info "Installing Dependencies"
$STD apt-get install -y \ $STD apt-get install -y \
git \ git \
nodejs \
npm \
sqlite3 \ sqlite3 \
unzip \ 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_ok "Installed Dependencies"
msg_info "Setup Guardian" msg_info "Setup Guardian"