Skip to content

Commit

Permalink
errcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Apr 17, 2017
1 parent e4c018c commit c2e2d27
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ func main() {
printHighlights(allStats)
return nil
}
app.Run(os.Args)
if err := app.Run(os.Args); err != nil {
panic(err)
}
}

func printHighlights(s orgstats.Stats) {
Expand Down

0 comments on commit c2e2d27

Please sign in to comment.