Skip to content

Commit

Permalink
fix: stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Nov 18, 2024
1 parent e6b624c commit fbb0a65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func main() {
if errors.Is(err, huh.ErrUserAborted) {
os.Exit(exit.StatusAborted)
}
fmt.Println(err)
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}

0 comments on commit fbb0a65

Please sign in to comment.