(args []string)
| 55 | } |
| 56 | |
| 57 | func (self *Shell) runCommandWithOutput(args []string) (string, error) { |
| 58 | return self.runCommandWithOutputAndEnv(args, []string{}) |
| 59 | } |
| 60 | |
| 61 | func (self *Shell) runCommandWithOutputAndEnv(args []string, env []string) (string, error) { |
| 62 | cmd := exec.Command(args[0], args[1:]...) |
no test coverage detected