We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01d85ed commit e5493a7Copy full SHA for e5493a7
src/common/utils/pathUtils.ts
@@ -58,7 +58,7 @@ function getComparisonKey(uri: Uri): string {
58
}
59
60
export function normalizePath(fsPath: string): string {
61
- return path.resolve(fsPath);
+ return path.resolve(isWindows() ? fsPath.toLowerCase() : fsPath);
62
63
64
export function getResourceUri(resourcePath: string, root?: string): Uri | undefined {
0 commit comments