chore: Always exit 0 in cec-control

No sense throwing an error for an optional feature, this is a request in the first place.
This commit is contained in:
Kyle Gospodnetich 2023-11-02 21:48:56 -07:00 committed by GitHub
parent 06251a5fed
commit e18fd84e3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,3 +21,4 @@ elif [ "${ACTION}" = "onpoweroff" ] && [ "$CEC_ONPOWEROFF_STANDBY" = true ]; the
elif [ "${ACTION}" = "onsleep" ] && [ "$CEC_ONSLEEP_STANDBY" = true ]; then
echo "standby $CEC_TVID" | cec-client -s -d 1
fi
exit 0