(root *Command, args ...string)
| 30 | func emptyRun(*Command, []string) {} |
| 31 | |
| 32 | func executeCommand(root *Command, args ...string) (output string, err error) { |
| 33 | _, output, err = executeCommandC(root, args...) |
| 34 | return output, err |
| 35 | } |
| 36 | |
| 37 | func executeCommandWithContext(ctx context.Context, root *Command, args ...string) (output string, err error) { |
| 38 | buf := new(bytes.Buffer) |
no test coverage detected