From 1c30f54b2dd27f50003a9b1f85c4fce93c09b08d Mon Sep 17 00:00:00 2001 From: Mahesh Murag Date: Tue, 10 Dec 2024 11:53:23 -0500 Subject: [PATCH] Change case sensitivity for filesystem server --- src/filesystem/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/filesystem/index.ts b/src/filesystem/index.ts index 730721de..ff74be5e 100644 --- a/src/filesystem/index.ts +++ b/src/filesystem/index.ts @@ -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 {