From 6d7df4266da89bb8d7e3c854f283e5db7bd42677 Mon Sep 17 00:00:00 2001 From: Elio Struyf Date: Tue, 8 Oct 2024 19:55:45 +0200 Subject: [PATCH] #840 - Fix win path --- src/commands/Folders.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/Folders.ts b/src/commands/Folders.ts index 8d5e8df6..ffe4d319 100644 --- a/src/commands/Folders.ts +++ b/src/commands/Folders.ts @@ -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