fix nil check
This commit is contained in:
parent
cee005ee62
commit
1f7d1684b8
@ -29,7 +29,7 @@ type Context struct {
|
|||||||
func NewContext(app *App, set *flag.FlagSet, parentCtx *Context) *Context {
|
func NewContext(app *App, set *flag.FlagSet, parentCtx *Context) *Context {
|
||||||
c := &Context{App: app, flagSet: set, parentContext: parentCtx}
|
c := &Context{App: app, flagSet: set, parentContext: parentCtx}
|
||||||
if parentCtx != nil {
|
if parentCtx != nil {
|
||||||
if parentCtx.Context != nil {
|
if parentCtx.Context == nil {
|
||||||
parentCtx.Context = context.Background()
|
parentCtx.Context = context.Background()
|
||||||
}
|
}
|
||||||
c.Context = parentCtx.Context
|
c.Context = parentCtx.Context
|
||||||
|
Loading…
Reference in New Issue
Block a user