services: Fix shellcheck error

This commit is contained in:
Marty Oehme 2020-09-25 11:24:10 +02:00
parent facaa3e185
commit 94673ea507
Signed by: Marty
GPG Key ID: B7538B8F50A1C800
1 changed files with 1 additions and 1 deletions

View File

@ -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