()
| 52 | } |
| 53 | |
| 54 | func (p PortConfig) nameVersion() string { |
| 55 | if p.DevDep || p.HostDev { |
| 56 | return fmt.Sprintf("%s@%s-dev", p.LibName, p.LibVersion) |
| 57 | } else { |
| 58 | return fmt.Sprintf("%s@%s", p.LibName, p.LibVersion) |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | type buildSystem interface { |
| 63 | eventHook |
no test coverage detected