From fb12b1eea69982dac6ac69da2fbd776fdb612cfc Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Wed, 3 Dec 2025 20:01:37 +0100 Subject: [PATCH] Fix Homebridge update detection for Debian 13 DEB822 format (#9629) * Initial plan * Fix Homebridge update detection for Debian 13 Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com> --- ct/homebridge.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/homebridge.sh b/ct/homebridge.sh index 1635248ab5..ba1648c64a 100644 --- a/ct/homebridge.sh +++ b/ct/homebridge.sh @@ -23,7 +23,7 @@ function update_script() { header_info check_container_storage check_container_resources - if [[ ! -f /etc/apt/sources.list.d/homebridge.list ]]; then + if ! dpkg -s homebridge >/dev/null 2>&1; then msg_error "No ${APP} Installation Found!" exit fi