From 1c9672a03c353c14e8f4c3367d7cc1f1edf1d091 Mon Sep 17 00:00:00 2001 From: reubenmiller Date: Tue, 3 Mar 2026 23:42:06 +0100 Subject: [PATCH] fix(flows): fix parsing bug which resulted in missing the first parameter --- src/inventory-scripts/70_FlowParams | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/inventory-scripts/70_FlowParams b/src/inventory-scripts/70_FlowParams index f2c143e..31b4889 100755 --- a/src/inventory-scripts/70_FlowParams +++ b/src/inventory-scripts/70_FlowParams @@ -8,7 +8,7 @@ TEDGE_CONFIG_DIR=${TEDGE_CONFIG_DIR:-/etc/tedge} MAPPERS_DIR="$TEDGE_CONFIG_DIR/mappers" find "$MAPPERS_DIR" -name params.toml | while read -r PARAMS_FILE; do - VALUES=$(jq --raw-input '[ inputs + VALUES=$(jq --raw-input --null-input '[ inputs | gsub("\r$"; "") | split(" = "; "") | select(length == 2)