Skip to content

Commit

Permalink
fix: Change the application flags order avoiding panics
Browse files Browse the repository at this point in the history
This commit solves issue #264
  • Loading branch information
titusjaka authored and alecthomas committed Jan 27, 2022
1 parent 38c5622 commit e497001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion context.go
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ func (c *Context) Resolve() error {
})
}
}
c.Path = append(inserted, c.Path...)
c.Path = append(c.Path, inserted...)
return nil
}

Expand Down

0 comments on commit e497001

Please sign in to comment.