From 37d5a4adc914ceeb0b3ade5cdedbca9529ffbb57 Mon Sep 17 00:00:00 2001 From: M0VUB <76499782+ShaYmez@users.noreply.github.com> Date: Sun, 6 Aug 2023 22:42:27 +0100 Subject: [PATCH] Update entrypoint Typo --- entrypoint | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint b/entrypoint index fce300e..c6b1bf3 100755 --- a/entrypoint +++ b/entrypoint @@ -3,9 +3,10 @@ cd /opt/hblink3 if [ "$PARROT_ENABLE" == 1 ] then - echo 'Staring HBlink with Parrot.....' + echo 'Starting HBlink with Parrot.....' python /opt/hblink3/bridge.py -c hblink.cfg -r rules.py & python /opt/hblink3/playback.py -c playback.cfg else + echo 'Starting HBlink.....' python /opt/hblink3/bridge.py -c hblink.cfg -r rules.py fi