(cmd string, args ...string)
| 83 | } |
| 84 | |
| 85 | func RunSshCommand(cmd string, args ...string) error { |
| 86 | if *sshOptions != "" { |
| 87 | args = append(strings.Split(*sshOptions, " "), args...) |
| 88 | } |
| 89 | return RunCommand(cmd, args...) |
| 90 | } |
| 91 | |
| 92 | func PushAndRunTests(host, testDir string) (result error) { |
| 93 | // Push binary. |
no test coverage detected
searching dependent graphs…