Skip to content

Commit 21e517f

Browse files
committed
fix: add missing slash
1 parent 029273f commit 21e517f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/options.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ export function resolveOptions(options: Options, root: string): ResolvedOptions
6464
i = i.slice(1)
6565
}
6666
return resolved.deep
67-
? prefix + escapeSpecialChars((join(i, `**/*.${extsGlob}`)))
68-
: prefix + escapeSpecialChars((join(i, `*.${extsGlob}`)))
67+
? prefix + escapeSpecialChars(slash(join(i, `**/*.${extsGlob}`)))
68+
: prefix + escapeSpecialChars(slash(join(i, `*.${extsGlob}`)))
6969
})
7070

7171
if (!resolved.extensions.length)

0 commit comments

Comments
 (0)