Hey,
I think I found a bug while trying to figure out how to escape } in property declarations like
property: ${ENV_VAR:textWith}inIt}
I ended up with something like that:
property: ${ENV_VAR:#{'textWith}inIt'}}
which worked fine when ENV_VAR wasn't set - but with ENV_VAR + "}" in the property if it's set.
Don't hestitate to ask if you need additional information.
Cheers Marko
Comment From: snicoll
You need to escape the }
with \
.