cmd: Make tmpl local variable

Fix CircleCI tests
This commit is contained in:
Albert Nigmatzianov 2017-05-08 23:00:14 +02:00
parent c0bd07d7ba
commit d236d29810

View file

@ -83,11 +83,8 @@ func exists(path string) bool {
return false
}
var tmpl = template.New("").Funcs(template.FuncMap{"comment": commentifyString})
func executeTemplate(tmplStr string, data interface{}) (string, error) {
var err error
tmpl, err = tmpl.Parse(tmplStr)
tmpl, err := template.New("").Funcs(template.FuncMap{"comment": commentifyString}).Parse(tmplStr)
if err != nil {
return "", err
}