From 25e3b2f35d612dacf5cf9de9af945f1410759022 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 8 Jul 2025 09:50:19 +0200 Subject: [PATCH] Fix operator --- .templates/00-global_var.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.templates/00-global_var.sh b/.templates/00-global_var.sh index c141289ef..93e6dcd99 100644 --- a/.templates/00-global_var.sh +++ b/.templates/00-global_var.sh @@ -44,7 +44,7 @@ for KEYS in "${arr[@]}"; do bashio::log.warning "One of your option is an array, skipping" else # Sanitize variable - if [[ "$VALUE" <> \'*\' ]]; then + if [[ "$VALUE" != \'*\' ]]; then VALUE=$(sanitize_variable "$VALUE") fi # Continue for single values