actually return errors

Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2017-06-05 14:20:42 -04:00
parent 882e590595
commit bd56ba0eff
No known key found for this signature in database
GPG key ID: 18F3685C0022BFF3

View file

@ -365,5 +365,7 @@ func main() {
},
}
app.Run(os.Args)
if err := app.Run(os.Args); err != nil {
logrus.Fatal(err)
}
}