Skip to content

Commit

Permalink
fix: clean up linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
erichartline committed Oct 16, 2019
1 parent 219f5b6 commit 51e24b1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,8 @@ func main() {
},
},
}
app.Run(os.Args)
err := app.Run(os.Args)
if err != nil {
cli.NewExitError(err.Error(), 2)
}
}

0 comments on commit 51e24b1

Please sign in to comment.