Skip to content

Commit fb12b1e

Browse files
CopilotMickLesk
andauthored
Fix Homebridge update detection for Debian 13 DEB822 format (#9629)
* Initial plan * Fix Homebridge update detection for Debian 13 Co-authored-by: MickLesk <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: MickLesk <[email protected]>
1 parent 41329f9 commit fb12b1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ct/homebridge.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function update_script() {
2323
header_info
2424
check_container_storage
2525
check_container_resources
26-
if [[ ! -f /etc/apt/sources.list.d/homebridge.list ]]; then
26+
if ! dpkg -s homebridge >/dev/null 2>&1; then
2727
msg_error "No ${APP} Installation Found!"
2828
exit
2929
fi

0 commit comments

Comments
 (0)