(options)
| 20144 | console.log(`Unexpected error attempting to determine the actual case of the file '${filePath}': ${err}`); |
| 20145 | } |
| 20146 | return filePath; |
| 20147 | } else { |
| 20148 | if (isUnixExecutable(stats)) { |
| 20149 | return filePath; |
| 20150 | } |
| 20151 | } |
| 20152 | } |
| 20153 | } |
| 20154 | return ""; |
| 20155 | }); |
| 20156 | } |
| 20157 | function normalizeSeparators(p) { |
| 20158 | p = p || ""; |
| 20159 | if (IS_WINDOWS) { |
| 20160 | p = p.replace(/\//g, "\\"); |
| 20161 | return p.replace(/\\\\+/g, "\\"); |
| 20162 | } |
no test coverage detected