Browse Source

fix: [compose-core] spurious ``return`` in shell body !minor

Signed-off-by: Valentin Lab <valentin.lab@kalysto.org>
Valentin Lab 2 years ago
parent
commit
92b8bbbe9c
  1. 2
      bin/compose-core

2
bin/compose-core

@ -4303,7 +4303,7 @@ if [ -z "$is_docker_compose_action" -a "$action" ]; then
## Required by has_service_action
array_read-0 services_args < <(printf "%s" "$COMPOSE_YML_CONTENT" | shyaml keys-0 2>/dev/null)
get_all_relations "${services_args[@]}" >/dev/null 2>&1 || return 1
get_all_relations "${services_args[@]}" >/dev/null 2>&1 || exit 1
remainder_args=("${remainder_args[@]:1}")
if has_service_action "$action_service" "$action" >/dev/null; then

Loading…
Cancel
Save