Update pkg/engine/engine.go

Co-authored-by: George Jenkins <gvjenkins@gmail.com>
Signed-off-by: Terry Howe <terrylhowe@gmail.com>
This commit is contained in:
Terry Howe 2025-09-12 14:27:00 -06:00 committed by GitHub
parent 91a65234ac
commit b2870379c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -377,7 +377,7 @@ func parseTemplateExecErrorString(s string) (TraceableError, bool) {
// Matches https://cs.opensource.google/go/go/+/refs/tags/go1.23.6:src/text/template/exec.go;l=138
traceableError, done = parseTemplateSimpleErrorString(remainder)
if done {
return traceableError, done
return traceableError, true
}
return TraceableError{}, false