Browse Source
Quote paths to prevent word splitting
pull/6241/head
Jacobo de Vera
2 months ago
committed by
tomo
No known key found for this signature in database
GPG Key ID: 6826163BFB606E85
1 changed files with
2 additions and
2 deletions
-
deploy/multideploy.sh
|
|
@ -244,8 +244,8 @@ _deploy_services() { |
|
|
|
_tempfile=$(mktemp) |
|
|
|
trap "rm -f $_tempfile" EXIT |
|
|
|
|
|
|
|
yq e '.services[].name' "$_deploy_file" > $_tempfile |
|
|
|
_debug3 "Services" "$(cat $_tempfile)" |
|
|
|
yq e '.services[].name' "$_deploy_file" > "$_tempfile" |
|
|
|
_debug3 "Services" "$(cat "$_tempfile")" |
|
|
|
|
|
|
|
_failedServices="" |
|
|
|
_failedCount=0 |
|
|
|