(ui *ui.UI, args []string)
| 48 | } |
| 49 | |
| 50 | func (p *CommandParser) ParseCommandFromArgs(ui *ui.UI, args []string) (int, error) { |
| 51 | p.UI = ui |
| 52 | return p.parse(args, &common.Commands) |
| 53 | } |
| 54 | |
| 55 | func (p *CommandParser) executionWrapper(cmd flags.Commander, args []string) error { |
| 56 | cfConfig := p.Config |
no test coverage detected