fix: harden windows CI tests and markdown lint

This commit is contained in:
Affaan Mustafa
2026-03-20 03:03:57 -07:00
parent cbccb7fdc0
commit e70c43bcd4
6 changed files with 51 additions and 20 deletions

View File

@@ -16,7 +16,7 @@ function toBashPath(filePath) {
}
return String(filePath)
.replace(/^([A-Za-z]):/, (_, driveLetter) => `/mnt/${driveLetter.toLowerCase()}`)
.replace(/^([A-Za-z]):/, (_, driveLetter) => `/${driveLetter.toLowerCase()}`)
.replace(/\\/g, '/');
}