mirror of https://github.com/databricks/cli.git
remove panic from skipThisFile
This commit is contained in:
parent
3d06fb67e8
commit
4a53e0ce5a
|
@ -8,8 +8,9 @@ import (
|
||||||
var errSkipThisFile = errors.New("skip generating this file")
|
var errSkipThisFile = errors.New("skip generating this file")
|
||||||
|
|
||||||
var HelperFuncs = template.FuncMap{
|
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) {
|
"skipThisFile": func() (any, error) {
|
||||||
return nil, errSkipThisFile
|
return nil, errSkipThisFile
|
||||||
// panic(errSkipThisFile)
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue