Change case sensitivity for filesystem server

This commit is contained in:
Mahesh Murag
2024-12-10 11:53:23 -05:00
parent 0968e431f3
commit 1c30f54b2d

View File

@@ -24,7 +24,7 @@ if (args.length === 0) {
// Normalize all paths consistently
function normalizePath(p: string): string {
return path.normalize(p).toLowerCase();
return path.normalize(p);
}
function expandHome(filepath: string): string {