Skip to content

Commit 5413206

Browse files
committed
fixup! fixup! fixup! fixup! Fix path normalization on Windows
1 parent b66e252 commit 5413206

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/globs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ const NOT_IGNORED = ['**/*'];
225225

226226
const normalizeFileForMatching = (cwd, file) => {
227227
if (process.platform === 'win32') {
228-
cwd = slash(file);
228+
cwd = slash(cwd);
229229
file = slash(file);
230230
}
231231

0 commit comments

Comments
 (0)