From 3d11c1c90b8550c733ba8f74e89a437e1cd377d4 Mon Sep 17 00:00:00 2001 From: Gyurix Date: Sat, 19 Oct 2024 16:06:20 +0200 Subject: [PATCH] removed unneccesary single quote in echo command --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 0d7b7ca..102174e 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -12,7 +12,7 @@ if [ -n "$EXISTS" ]; then sed "s/$IP/$HOMEASSISTANT_IP/g" $HOST_FILE > /tmp/hosts.local mv /tmp/hosts.local $HOST_FILE; else - echo "'$HOMEASSISTANT_IP' '$SELECTOR'" >> $HOST_FILE + echo "$HOMEASSISTANT_IP $SELECTOR" >> $HOST_FILE fi mkdir -p /etc/user/data/homeassistant/config