(command string, args ...string)
| 597 | } |
| 598 | |
| 599 | func (b *buildingMaterial) newExecCmd(command string, args ...string) *exec.Cmd { |
| 600 | cmd := exec.Command(command, args...) |
| 601 | fmt.Println(cmd.Args) |
| 602 | cmd.Dir = b.tmpDir |
| 603 | cmd.Stdout = os.Stdout |
| 604 | cmd.Stderr = os.Stderr |
| 605 | return cmd |
| 606 | } |
| 607 | |
| 608 | func versionedModulePath(modulePath, moduleVersion string) string { |
| 609 | if moduleVersion == "" { |
no outgoing calls
no test coverage detected