cmd/stateth: fix linter error

This commit is contained in:
Anton Evangelatov 2018-05-19 01:09:33 +02:00
parent 8f6b003ff7
commit 9e55d310ed

View file

@ -115,10 +115,7 @@ func main() {
fmt.Println("waiting for SIGINT or SIGTERM (CTRL^C) to stop service and remove containers...") fmt.Println("waiting for SIGINT or SIGTERM (CTRL^C) to stop service and remove containers...")
<-done <-done
if err := cleanupContainers(c); err != nil { return cleanupContainers(c)
return err
}
return nil
} }
app.Run(os.Args) app.Run(os.Args)