Add version pin to check_for_gh_release in NocoDB CT

Prevents the update check from looking for versions newer than 0.301.1
This commit is contained in:
MickLesk
2026-02-07 18:15:26 +01:00
parent 18ec4692d1
commit 63ad9440e4

View File

@@ -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"