Skip to content

Commit 80b45d7

Browse files
CopilotMickLesk
andcommitted
Fix Homebridge update detection for Debian 13
Co-authored-by: MickLesk <[email protected]>
1 parent 5a7cb57 commit 80b45d7

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)