Skip to content

Commit

Permalink
Change case sensitivity for filesystem server
Browse files Browse the repository at this point in the history
  • Loading branch information
maheshmurag committed Dec 10, 2024
1 parent 0968e43 commit 1c30f54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filesystem/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 1c30f54

Please sign in to comment.