Merge pull request #1091 from technosophos/fix/1076-linter-debug

fix(helm): remove extra linter output
pull/1096/head
Matt Butcher 8 years ago committed by GitHub
commit 0963914403

@ -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