(name string, arg ...string)
| 88 | } |
| 89 | |
| 90 | func (c *CommandHelper) RunWithStdout(name string, arg ...string) (string, error) { |
| 91 | return c.run(name, arg...) |
| 92 | } |
| 93 | |
| 94 | func (c *CommandHelper) RunPipe(commands ...PipeCommand) (string, error) { |
| 95 | if len(commands) == 0 { |
no test coverage detected