Browse Source

Quote paths to prevent word splitting

pull/6241/head
Jacobo de Vera 5 months ago
committed by neil
parent
commit
8a78865174
  1. 4
      deploy/multideploy.sh

4
deploy/multideploy.sh

@ -244,8 +244,8 @@ _deploy_services() {
_tempfile=$(mktemp) _tempfile=$(mktemp)
trap "rm -f $_tempfile" EXIT 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="" _failedServices=""
_failedCount=0 _failedCount=0

Loading…
Cancel
Save