fix(helm): remove extra linter output

Closes #1076
pull/1091/head
Matt Butcher 8 years ago
parent 64b73081ee
commit 84761a559a

@ -19,7 +19,6 @@ package engine
import (
"bytes"
"fmt"
"log"
"path"
"strings"
"text/template"
@ -132,7 +131,6 @@ func (e *Engine) render(tpls map[string]renderable) (map[string]string, error) {
files := []string{}
for fname, r := range tpls {
log.Printf("Preparing template %s", fname)
t = t.New(fname).Funcs(funcMap)
if _, err := t.Parse(r.tpl); err != nil {
return map[string]string{}, fmt.Errorf("parse error in %q: %s", fname, err)

Loading…
Cancel
Save