From 63ad9440e42d998c3d01dbcd2be35dc5f6227230 Mon Sep 17 00:00:00 2001 From: MickLesk Date: Sat, 7 Feb 2026 18:15:26 +0100 Subject: [PATCH] Add version pin to check_for_gh_release in NocoDB CT Prevents the update check from looking for versions newer than 0.301.1 --- ct/nocodb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/nocodb.sh b/ct/nocodb.sh index 14d9447b8..517b227c9 100644 --- a/ct/nocodb.sh +++ b/ct/nocodb.sh @@ -27,7 +27,7 @@ function update_script() { msg_error "No ${APP} Installation Found!" exit fi - if check_for_gh_release "nocodb" "nocodb/nocodb"; then + if check_for_gh_release "nocodb" "nocodb/nocodb" "0.301.1"; then msg_info "Stopping Service" systemctl stop nocodb msg_ok "Stopped Service"