(brokenPath)
| 91 | } |
| 92 | |
| 93 | function fixPath(brokenPath) { |
| 94 | const startIndex = brokenPath.lastIndexOf(REPO_PATH); |
| 95 | if (startIndex === -1) { |
| 96 | return toLowerDriveLetter(brokenPath); |
| 97 | } |
| 98 | return toLowerDriveLetter(brokenPath.substr(startIndex)); |
| 99 | } |
no test coverage detected
searching dependent graphs…