(name string, arg ...string)
| 104 | } |
| 105 | |
| 106 | func (c *CommandHelper) RunWithStdout(name string, arg ...string) (string, error) { |
| 107 | return c.run(name, arg...) |
| 108 | } |
| 109 | |
| 110 | func (c *CommandHelper) RunWithOptionalSudoAndStdout(name string, arg ...string) (string, error) { |
| 111 | commandName, commandArgs := WrapWithOptionalSudo(name, arg...) |
no test coverage detected