Skip to content

Commit

Permalink
[jellyseerr] Update nodejs if not up-to-date (#1563)
Browse files Browse the repository at this point in the history
* [jellyseerr] Update nodejs if not up-to-date

* simplify if
  • Loading branch information
makstech authored Jan 18, 2025
1 parent d1f5556 commit 75590a8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ct/jellyseerr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,22 @@ function update_script() {
exit
fi

if [ "$(node -v | cut -c2-3)" -ne 22 ]; then
msg_info "Updating Node.js Repository"
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main" >/etc/apt/sources.list.d/nodesource.list
msg_ok "Updating Node.js Repository"

msg_info "Updating Packages"
apt-get update &>/dev/null
apt-get -y upgrade &>/dev/null
msg_ok "Updating Packages"

msg_info "Cleaning up"
apt-get -y autoremove
apt-get -y autoclean
msg_ok "Cleaning up"
fi

if ! command -v pnpm &> /dev/null; then
msg_error "pnpm not found. Installing..."
npm install -g pnpm &>/dev/null
Expand Down

0 comments on commit 75590a8

Please sign in to comment.