From dcc4c925bba6b5e36ca2cbb104f79a5e7565b77a Mon Sep 17 00:00:00 2001 From: Minijackson Date: Fri, 6 Oct 2023 16:27:49 +0200 Subject: [PATCH] ioc/devshell: fix quotes this makes shellcheck happy --- ioc/modules/devshell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ioc/modules/devshell.nix b/ioc/modules/devshell.nix index 744a160b..3a8716da 100644 --- a/ioc/modules/devshell.nix +++ b/ioc/modules/devshell.nix @@ -295,7 +295,7 @@ in { # set to empty if unset : "''${EPICS_COMPONENTS=}" - IFS=: read -ra components <<<$EPICS_COMPONENTS + IFS=: read -ra components <<<"$EPICS_COMPONENTS" for component in "''${components[@]}"; do echo "$component"