Files
certman/app/executor/util.go
Steven Tracey 6aacbfbb71
All checks were successful
Build (artifact) / build (push) Has been skipped
[CI-SKIP] Store Pre-Claude Code
2026-04-22 22:26:21 -04:00

9 lines
156 B
Go

package main
import "fmt"
// brief tries to keep errors short and non-leaky.
func brief(err error) string {
return fmt.Sprintf("hook failed: %v", err)
}