fix linting errs

This commit is contained in:
2025-09-24 00:07:00 +02:00
parent 26bca77a03
commit 8d61b1d010
3 changed files with 15 additions and 15 deletions

View File

@@ -20,7 +20,10 @@ func Main(output io.Writer) int {
}
if conf.Examples {
fmt.Fprintln(output, Examples)
_, err := fmt.Fprintln(output, Examples)
if err != nil {
Die(err)
}
os.Exit(0)
}