(name string, args []string, stdout, stderr io.Writer)
| 24 | // processes. |
| 25 | type CommandRunner interface { |
| 26 | Run(name string, args []string, stdout, stderr io.Writer) (int, error) |
| 27 | } |
| 28 | |
| 29 | // ShellRunner is the default CommandRunner; it executes via /bin/sh -c when the |
no outgoing calls