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