Browse Source

fixed yml file env list

pull/6241/head
tomo 6 months ago
committed by neil
parent
commit
d375012c5d
  1. 2
      deploy/multideploy.sh

2
deploy/multideploy.sh

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

Loading…
Cancel
Save