remove os.Exit after log.Fatal call

This is effectively a dead code.
This commit is contained in:
Iskander Sharipov 2018-09-15 00:46:49 +03:00
parent 38566f0c4e
commit 3342a6892e
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)
} }
} }