(ctx context.Context, dir, name string, args ...string)
| 16 | // command with that working directory (git -C semantics). |
| 17 | type commandRunner interface { |
| 18 | Run(ctx context.Context, dir, name string, args ...string) (stdout, stderr string, err error) |
| 19 | } |
| 20 | |
| 21 | // execCommandRunner is the production commandRunner backed by os/exec. |
no outgoing calls