From 3c0a1bd9dd6a5409595f5614df0bbc6bfe63978e Mon Sep 17 00:00:00 2001 From: Alexandre Date: Fri, 19 Nov 2021 10:49:42 +0100 Subject: [PATCH] correction --- gazpar2mqtt/rootfs/scripts/99-run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gazpar2mqtt/rootfs/scripts/99-run.sh b/gazpar2mqtt/rootfs/scripts/99-run.sh index 0f6590df7..139afb46a 100644 --- a/gazpar2mqtt/rootfs/scripts/99-run.sh +++ b/gazpar2mqtt/rootfs/scripts/99-run.sh @@ -66,7 +66,7 @@ bashio::log.info "Starting the app with the variables in /config/gazpar2mqtt" for word in $(parse_yaml "$CONFIGSOURCE" ""); do # Data validation if [[ $word =~ ^.+[=].+$ ]]; then - $word=${word//[\"\']/} + word=${word//[\"\']/} export $word # Export the variable bashio::log.blue "$word" else