| 15 | } |
| 16 | |
| 17 | type builder struct { |
| 18 | dir string |
| 19 | binary string |
| 20 | errors string |
| 21 | useGodep bool |
| 22 | wd string |
| 23 | buildArgs []string |
| 24 | } |
| 25 | |
| 26 | func NewBuilder(dir string, bin string, useGodep bool, wd string, buildArgs []string) Builder { |
| 27 | if len(bin) == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected