Merge pull request #214 from Quasilyte/quasilyte/deadCodeAfterLogFatal

remove os.Exit after log.Fatal call
This commit is contained in:
Alessio Pracchia 2018-09-18 11:22:44 +02:00 committed by GitHub
commit e887c9de3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -108,7 +108,6 @@ func main() {
} }
if err := app.Run(os.Args); err != nil { if err := app.Run(os.Args); err != nil {
log.Fatal(err) log.Fatal(err)
os.Exit(1)
} }
} }