chainwatch: app exit with non-zero on error

This commit is contained in:
Mike Greenberg 2020-07-10 11:58:41 -04:00
parent 3332290626
commit ebd0e93a99

View File

@ -51,7 +51,7 @@ func main() {
if err := app.Run(os.Args); err != nil {
log.Warnf("%+v", err)
return
os.Exit(1)
}
}