From 7c19172f87b6fe35dffd8f9a252c3c10efe13aa2 Mon Sep 17 00:00:00 2001 From: Suleyman Farajli Date: Tue, 25 Nov 2025 22:40:16 +0400 Subject: fix(scripts): fix shellcheck errors and warnings --- scripts/daemons/notifd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/daemons') diff --git a/scripts/daemons/notifd b/scripts/daemons/notifd index 85b851d..3d0e809 100755 --- a/scripts/daemons/notifd +++ b/scripts/daemons/notifd @@ -19,7 +19,7 @@ cancel() { tpid="" } -while read n <&3; do +while read -r n <&3; do [ "${n}" = "-1" ] && { cancel; continue; } case "${n}" in ''|*[!0-9]*) continue ;; esac -- cgit v1.2.3