(cmd system.Command)
| 14 | } |
| 15 | |
| 16 | func (c *Runner) RunComplexCommand(cmd system.Command) (stdout, stderr string, exitStatus int, err error) { |
| 17 | return c.BaseCmdRunner.RunComplexCommand(powershellCommand(cmd)) |
| 18 | } |
| 19 | |
| 20 | func (c *Runner) RunComplexCommandAsync(cmd system.Command) (system.Process, error) { |
| 21 | return c.BaseCmdRunner.RunComplexCommandAsync(powershellCommand(cmd)) |
no test coverage detected