fix version option in cmd

This commit is contained in:
xueyun.liu 2017-05-09 15:49:59 +08:00
parent e55e5033b8
commit 4edb8650e5

View File

@ -413,6 +413,7 @@ func (c *cmd) Init(opts ...Option) error {
}
c.app.Name = c.opts.Name
c.app.Version = c.opts.Version
c.app.HideVersion = len(c.opts.Version) == 0
c.app.Usage = c.opts.Description
c.app.RunAndExitOnError()
return nil