(dir string, env []string, fail func(string))
| 28 | } |
| 29 | |
| 30 | func NewShell(dir string, env []string, fail func(string)) *Shell { |
| 31 | return &Shell{dir: dir, env: env, fail: fail} |
| 32 | } |
| 33 | |
| 34 | func (self *Shell) RunCommand(args []string) *Shell { |
| 35 | return self.RunCommandWithEnv(args, []string{}) |
no outgoing calls
no test coverage detected