cloudfoundry / bosh-cli

BOSH CLI v2+
Apache License 2.0
178 stars 162 forks source link

allow white-space in (( var_name )) template #653

Closed nouseforaname closed 5 months ago

nouseforaname commented 5 months ago

currently

bosh int <( echo "test: (( var_name ))") --v=var_name=value will render

test: (( var_name ))

with the provided patch it will render:

test: value

I guess this behavior has been the same forever and this is not strictly required. I just happened to lose 20 minutes of my life trying to figure out why my interpolation didn't work and figured I'd at least try to create a commit.