From e80ef21ad6ea0f4e717382f1a6c8dddc456f69c6 Mon Sep 17 00:00:00 2001 From: MickLesk Date: Sat, 14 Mar 2026 21:30:04 +0100 Subject: [PATCH] fix(patchmon): remove v prefix from pinned version in check_for_gh_release 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"