Commit 84761a55 authored by Matt Butcher's avatar Matt Butcher

fix(helm): remove extra linter output

Closes #1076
parent 64b73081
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment