From 32e28d49a701ac499c736524a42e81b3a03b4b5c Mon Sep 17 00:00:00 2001 From: Kroese Date: Sat, 11 Oct 2025 17:56:02 +0200 Subject: [PATCH] fix: Relay last status message --- src/socket.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/socket.sh b/src/socket.sh index edc9d9f..cc91de9 100644 --- a/src/socket.sh +++ b/src/socket.sh @@ -4,7 +4,7 @@ set -Eeuo pipefail path="/run/shm/msg.html" if [ -f "$path" ] && [ -s "$path" ]; then - echo -n "s: " && cat "$path" ;; + echo -n "s: " && cat "$path" fi inotifywait -m "$path" |