Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
SaswatPadhi committed Dec 21, 2024
1 parent 5d34fe1 commit b51ffb1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion comp
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,8 @@ for _CUR_COMP_ in "${COMPOSITIONS[@]}" ; do
_CUR_COMPOSE_OVERRIDE_FILES_=( docker-compose.override.yml)
fi

read -r OPTION_DEVICES OPTION_HOOKS OPTION_LABELS OPTION_LOGGING OPTION_PORTS <<<"${OPTIONS_FROM_ARGS[*]}"
IFS=, read -r OPTION_DEVICES OPTION_HOOKS OPTION_LABELS OPTION_LOGGING OPTION_PORTS \
<<< "$( IFS=, ; echo "${OPTIONS_FROM_ARGS[*]}" )"
_DISABLED_OPTIONS_=() ; opt_error=0
for opt in DEVICES HOOKS LABELS LOGGING PORTS ; do
__read_option $opt || opt_error=1
Expand Down

0 comments on commit b51ffb1

Please sign in to comment.