Skip to content

Commit

Permalink
No longer force all paths to unix style
Browse files Browse the repository at this point in the history
  • Loading branch information
MilapNaik committed Dec 4, 2023
1 parent f408c8a commit 2160545
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,6 @@ export class Util {
cwd = cwd.replace(/\\/g, '/');

const globResults = patterns.map(async (pattern) => {
//force all windows-style slashes to unix style
pattern = pattern.replace(/\\/g, '/');
//skip negated patterns (we will use them to filter later on)
if (pattern.startsWith('!')) {
return pattern;
Expand Down

0 comments on commit 2160545

Please sign in to comment.