Hide version info if user has not defined version
This commit is contained in:
parent
4805bd168c
commit
864c8349d5
3
app.go
3
app.go
@ -110,7 +110,6 @@ func NewApp() *App {
|
||||
HelpName: filepath.Base(os.Args[0]),
|
||||
Usage: "A new cli application",
|
||||
UsageText: "",
|
||||
Version: "0.0.0",
|
||||
BashComplete: DefaultAppComplete,
|
||||
Action: helpCommand.Action,
|
||||
Compiled: compileTime(),
|
||||
@ -141,7 +140,7 @@ func (a *App) Setup() {
|
||||
}
|
||||
|
||||
if a.Version == "" {
|
||||
a.Version = "0.0.0"
|
||||
a.HideVersion = true
|
||||
}
|
||||
|
||||
if a.BashComplete == nil {
|
||||
|
Loading…
Reference in New Issue
Block a user