mirror of https://github.com/spf13/cobra.git
Slight formatting change, to make next commit more readable
This commit is contained in:
parent
29e27b1649
commit
b9e25fa4a0
21
command.go
21
command.go
|
@ -422,19 +422,18 @@ func (c *Command) execute(a []string) (err error) {
|
||||||
c.Usage()
|
c.Usage()
|
||||||
r.SetOutput(out)
|
r.SetOutput(out)
|
||||||
return err
|
return err
|
||||||
} else {
|
}
|
||||||
// If help is called, regardless of other flags, we print that.
|
// If help is called, regardless of other flags, we print that.
|
||||||
// Print help also if c.Run is nil.
|
// Print help also if c.Run is nil.
|
||||||
if c.helpFlagVal || !c.Runnable() {
|
if c.helpFlagVal || !c.Runnable() {
|
||||||
c.Help()
|
c.Help()
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
c.preRun()
|
|
||||||
argWoFlags := c.Flags().Args()
|
|
||||||
c.Run(c, argWoFlags)
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
c.preRun()
|
||||||
|
argWoFlags := c.Flags().Args()
|
||||||
|
c.Run(c, argWoFlags)
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Command) preRun() {
|
func (c *Command) preRun() {
|
||||||
|
|
Loading…
Reference in New Issue