#840 - Fix win path

This commit is contained in:
Elio Struyf
2024-10-08 19:55:45 +02:00
parent 4282ec83e5
commit 6d7df4266d

View File

@@ -909,7 +909,7 @@ export class Folders {
// path can be a folder name or a wildcard.
// If its a folder name, we need to add a wildcard to the end
path = path.includes('*') ? path : join(path, '**');
return join(folderPath, path);
return parseWinPath(join(folderPath, path));
})
],
dot: true