diff --git a/libs/template/helpers.go b/libs/template/helpers.go index 27f829ee2..ffca0828f 100644 --- a/libs/template/helpers.go +++ b/libs/template/helpers.go @@ -8,8 +8,9 @@ import ( var errSkipThisFile = errors.New("skip generating this file") var HelperFuncs = template.FuncMap{ + // Text template execution returns the error only if it's the second return + // value from a function: https://pkg.go.dev/text/template#hdr-Pipelines "skipThisFile": func() (any, error) { return nil, errSkipThisFile - // panic(errSkipThisFile) }, }