mirror of
https://github.com/spf13/cobra
synced 2024-11-24 14:47:12 +00:00
Child command context is not updated when global context changed #2077
This commit is contained in:
parent
283e32d889
commit
b516e74458
1 changed files with 1 additions and 1 deletions
|
@ -1108,7 +1108,7 @@ func (c *Command) ExecuteC() (cmd *Command, err error) {
|
||||||
|
|
||||||
// We have to pass global context to children command
|
// We have to pass global context to children command
|
||||||
// if context is present on the parent command.
|
// if context is present on the parent command.
|
||||||
if cmd.ctx == nil {
|
if c.ctx != nil {
|
||||||
cmd.ctx = c.ctx
|
cmd.ctx = c.ctx
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue