fix(cli): handle folders with single quotes (#15283)

* fix(cli): handle folders with single quotes

* fix(cli): skip single quote test on Windows

* fix(cli): support double quote and backtick as well
This commit is contained in:
Desmond Cox
2025-01-12 16:44:51 +01:00
committed by GitHub
parent abf5b0afe1
commit c4a8fdf0f3
2 changed files with 20 additions and 3 deletions

View File

@@ -146,7 +146,7 @@ export const crawl = async (options: CrawlOptions): Promise<string[]> => {
}
const searchPatterns = patterns.map((pattern) => {
let escapedPattern = pattern;
let escapedPattern = pattern.replaceAll("'", "[']").replaceAll('"', '["]').replaceAll('`', '[`]');
if (recursive) {
escapedPattern = escapedPattern + '/**';
}