Child command context is not updated when global context changed #2077

This commit is contained in:
Varconst 2023-11-23 10:31:14 -05:00
parent 283e32d889
commit b516e74458

View file

@ -1108,7 +1108,7 @@ func (c *Command) ExecuteC() (cmd *Command, err error) {
// We have to pass global context to children command
// if context is present on the parent command.
if cmd.ctx == nil {
if c.ctx != nil {
cmd.ctx = c.ctx
}