(pkg *models.Package)
| 14 | ) |
| 15 | |
| 16 | func UpdateLibraryPath(pkg *models.Package) { |
| 17 | if env.Global { |
| 18 | updateGlobalLibraryPath() |
| 19 | } else { |
| 20 | updateDprojLibraryPath(pkg) |
| 21 | } |
| 22 | |
| 23 | } |
| 24 | |
| 25 | func cleanPath(paths []string, fullPath bool) []string { |
| 26 | prefix := env.GetModulesDir() |
no test coverage detected