From c119256ce838f7d088e1dbbe4183c52fca07eb09 Mon Sep 17 00:00:00 2001 From: Jan-Tarek Butt Date: Mon, 9 Dec 2019 00:33:32 +0100 Subject: [PATCH] scripts/modules.sh: disable warring for non double quoted variables --- scripts/modules.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/modules.sh b/scripts/modules.sh index 1472e82a..78b819c3 100644 --- a/scripts/modules.sh +++ b/scripts/modules.sh @@ -1,7 +1,8 @@ . ./modules [ ! -f "$GLUON_SITEDIR"/modules ] || . "$GLUON_SITEDIR"/modules -FEEDS="$(echo "$GLUON_FEEDS" "$GLUON_SITE_FEEDS" | tr ' ' '\n')" +# shellcheck disable=SC2086 +FEEDS="$(echo $GLUON_FEEDS $GLUON_SITE_FEEDS | tr ' ' '\n')" GLUON_MODULES=openwrt