Skip to content

Commit

Permalink
Fixed linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonito committed Apr 8, 2019
1 parent 4439399 commit c41f7db
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,7 @@ func run(args []string) error {
log.Tracef("Starting %s v%v\n", app.Name, app.Version)

cmd.Install(app)
if err := app.Run(args); err != nil {
return err
}
return nil
return app.Run(args)
}

func main() {
Expand Down

0 comments on commit c41f7db

Please sign in to comment.