From bbd09b40ff557717fe04d9af9f27fcd29b3151e4 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Sun, 15 Mar 2026 00:06:19 +0100 Subject: [PATCH] fix(patchmon): remove v prefix from pinned version in check_for_gh_release (#12891) check_for_gh_release expects versions without v prefix (like Immich). fetch_and_deploy_gh_release keeps v1.4.2 as it maps to the git tag. Fixes #12884 --- ct/patchmon.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/patchmon.sh b/ct/patchmon.sh index 43421d42d..02741386e 100644 --- a/ct/patchmon.sh +++ b/ct/patchmon.sh @@ -37,7 +37,7 @@ function update_script() { fi NODE_VERSION="24" setup_nodejs - if check_for_gh_release "PatchMon" "PatchMon/PatchMon" "v1.4.2"; then + if check_for_gh_release "PatchMon" "PatchMon/PatchMon" "1.4.2"; then msg_info "Stopping Service" systemctl stop patchmon-server msg_ok "Stopped Service"