Releases · orls/envtemplate
Better error handling, and zero tolerance of missing env vars
Add a utility for checking if vars are set: ...since strict-mode is now enabled
Add split util function
Add the ability to split vars by a string, useful for use with the built-in range:
{{ range $i, $v := split .MYVAR ","}} {{$i}}: {{$v}}\n{{ end }}
Given MYVAR="a,b,c", yields:
Optional third arg for max-splits:
{{ range $i, $v := split .MYVAR "," 2}} {{$i}}: {{$v}}\n{{ end }}
Given MYVAR="a,b,c", yields:
Initial release
Basic minimal functionality, with (hopefully) travis release uploading