Skip to content

Commit

Permalink
fix output to stderr on error
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariusz Kuchta committed Dec 5, 2024
1 parent 0277c94 commit d3c13ee
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 @@ -49,7 +49,7 @@ func main() {
default:
err := components.InitFromArg(argsWithProg[1])
if err != nil {
fmt.Println(os.Stderr, err)
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}
Expand Down

0 comments on commit d3c13ee

Please sign in to comment.