(args []string)
| 32 | } |
| 33 | |
| 34 | func (self *Shell) RunCommand(args []string) *Shell { |
| 35 | return self.RunCommandWithEnv(args, []string{}) |
| 36 | } |
| 37 | |
| 38 | // Run a command with additional environment variables set |
| 39 | func (self *Shell) RunCommandWithEnv(args []string, env []string) *Shell { |
no test coverage detected