Skip to content

Commit

Permalink
ioc/devshell: fix quotes
Browse files Browse the repository at this point in the history
this makes shellcheck happy
  • Loading branch information
minijackson committed Oct 6, 2023
1 parent d54ef3d commit dcc4c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ioc/modules/devshell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit dcc4c92

Please sign in to comment.