fix(win32): normalize backslash paths in config rel() and file ignore (#14903)

This commit is contained in:
Luke Parker
2026-02-24 22:42:48 +10:00
committed by GitHub
parent 1af3e9e557
commit 1a0639e5b8
2 changed files with 4 additions and 3 deletions

View File

@@ -67,7 +67,7 @@ export namespace FileIgnore {
if (Glob.match(pattern, filepath)) return false
}
const parts = filepath.split(sep)
const parts = filepath.split(/[/\\]/)
for (let i = 0; i < parts.length; i++) {
if (FOLDERS.has(parts[i])) return true
}