You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
default $var $default - Returns a default value for one that does not exist. {{ default .Env.VERSION "0.1.2" }}
Notice the double quotes around 0.1.2 . If I put these syntax in XML file , dockerize works but XML parsing using simple java library fails because of double quotes.
If dockerize allows default functionality to be honored in single quotes as well , both XML Parsing and dockerize will work and will be helpful in these kind of usecases.
default $var $default - Returns a default value for one that does not exist. {{ default .Env.VERSION '0.1.2' }}
The text was updated successfully, but these errors were encountered:
Consider this example from this repo only.
default $var $default - Returns a default value for one that does not exist. {{ default .Env.VERSION "0.1.2" }}
Notice the double quotes around 0.1.2 . If I put these syntax in XML file , dockerize works but XML parsing using simple java library fails because of double quotes.
If dockerize allows default functionality to be honored in single quotes as well , both XML Parsing and dockerize will work and will be helpful in these kind of usecases.
default $var $default - Returns a default value for one that does not exist. {{ default .Env.VERSION '0.1.2' }}
The text was updated successfully, but these errors were encountered: