Files
goutils/die/die.go
2025-11-15 16:10:14 -08:00

31 lines
658 B
Go

// Package die contains utilities for fatal error handling. It
// presents simple fatal utilities for Go programs.
package die
import (
"fmt"
"os"
)
// If prints the error to stderr and exits if err != nil.
func If(err error) {
if err != nil {
fmt.Fprintf(os.Stderr, "[!] %v\n", err)
os.Exit(1)
}
}
// With prints the message to stderr, appending a newline, and exits.
func With(fstr string, args ...any) {
out := fmt.Sprintf("[!] %s\n", fstr)
fmt.Fprintf(os.Stderr, out, args...)
os.Exit(1)
}
// When prints the error to stderr and exits if cond is true.
func When(cond bool, fstr string, args ...any) {
if cond {
With(fstr, args...)
}
}