Skip to content

Commit

Permalink
#840 - Fix win path
Browse files Browse the repository at this point in the history
  • Loading branch information
estruyf committed Oct 8, 2024
1 parent 4282ec8 commit 6d7df42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/Folders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6d7df42

Please sign in to comment.