Skip to content

Commit

Permalink
Write errors to stderr (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinbunney authored Jul 31, 2020
1 parent 3df19c1 commit 8d97458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github.com/getnelson/nelson/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func PrintTerminalErrors(errs []error) {
}

for _, e := range errs {
fmt.Println(e)
_, _ = fmt.Fprintln(os.Stderr, e)
}
}

Expand Down

0 comments on commit 8d97458

Please sign in to comment.