cmd/utils: remove redundant clause in if condition

This commit is contained in:
Péter Szilágyi 2018-01-03 17:24:21 +02:00 committed by GitHub
parent 89be5f76f8
commit d04a0c23b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,7 +96,7 @@ func NewApp(gitCommit, usage string) *cli.App {
//app.Authors = nil
app.Email = ""
app.Version = params.Version
if gitCommit != "" && len(gitCommit) >= 8 {
if len(gitCommit) >= 8 {
app.Version += "-" + gitCommit[:8]
}
app.Usage = usage