fixed yml file env list

This commit is contained in:
tomo
2025-07-01 16:02:50 +02:00
committed by neil
parent 37c25aa107
commit d375012c5d

View File

@@ -235,7 +235,7 @@ _deploy_services() {
for _service in $(printf '%s\n' "$_service_list"); do
_debug2 "Service" "$_service"
_hook=$(yq e ".services[] | select(.name == \"$_service\").hook" "$_deploy_file")
_envs=$(yq e ".services[] | select(.name == \"$_service\").environment[]" "$_deploy_file")
_envs=$(yq e ".services[] | select(.name == \"$_service\").environment" "$_deploy_file")
_export_envs "$_envs"
if ! _deploy_service "$_service" "$_hook"; then