From 94673ea507b289eed207a35dc651720d53a5b877 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 25 Sep 2020 11:24:10 +0200 Subject: [PATCH] services: Fix shellcheck error --- services/.local/share/services/x-started-confirm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/.local/share/services/x-started-confirm.sh b/services/.local/share/services/x-started-confirm.sh index cc9f9aa..09cfff4 100755 --- a/services/.local/share/services/x-started-confirm.sh +++ b/services/.local/share/services/x-started-confirm.sh @@ -11,7 +11,7 @@ while true; do ((++COUNTER)) - if [ $COUNTER -gt 20 ]; then + if [ "$COUNTER" -gt 20 ]; then printf "X did not start in time\n" exit 1 fi