I'm creating a template with a property that should have the following value after the template is used to create an instance:
When I put this in my property file in the template the tcruntime-instance script looks for a property named "bio.http.port", doesn't find it, and then the script fails.Code:dev.http.port=${bio.http.port}
I've tried using
andCode:dev.http.port=\${bio.http.port}
but get the same error every time.Code:dev.http.port=$${bio.http.port}
Does anyone know how to escape a ${} setting in a template configuration file?


Reply With Quote
