(dir string, stdout, stderr io.Writer, cmd string, args ...string)
| 49 | } |
| 50 | |
| 51 | func execGoFrom(dir string, stdout, stderr io.Writer, cmd string, args ...string) error { |
| 52 | return execFrom(dir, nil, stdout, stderr, "go", buildGoArgs(cmd, args...)...) |
| 53 | } |
| 54 | |
| 55 | func execGo(stdout, stderr io.Writer, cmd string, args ...string) error { |
| 56 | return execGoFrom("", stdout, stderr, cmd, args...) |
no test coverage detected