execCommandRunner is the production commandRunner backed by os/exec.
| 20 | |
| 21 | // execCommandRunner is the production commandRunner backed by os/exec. |
| 22 | type execCommandRunner struct{} |
| 23 | |
| 24 | func (execCommandRunner) Run(ctx context.Context, dir, name string, args ...string) (string, string, error) { |
| 25 | cmd := exec.CommandContext(ctx, name, args...) |
nothing calls this directly
no outgoing calls
no test coverage detected