Skip to content

Commit 4b14d09

Browse files
committed
Fix lowercase include paths on Mac
1 parent 5107f7e commit 4b14d09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export function normalizePath(p: string, opt: PathNormalizationOptions): string
111111
norm = norm.toLocaleLowerCase();
112112
break;
113113
case 'platform':
114-
if (process.platform === 'win32' || process.platform === 'darwin') {
114+
if (process.platform === 'win32') {
115115
norm = norm.toLocaleLowerCase();
116116
}
117117
break;

0 commit comments

Comments
 (0)