Skip to content

Commit 1d085cb

Browse files
committed
CI: normalize glob-sources paths to posix paths
1 parent a868e85 commit 1d085cb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/glob-sources.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ async function globSources(output, patterns, excludes = []) {
2020

2121
const sources =
2222
paths
23-
.map(path => normalize(relative(root, path)))
23+
.map(path => normalize(relative(root, path).replaceAll("\\", "/")))
2424
.sort((a, b) => a.localeCompare(b))
2525
.join("\n")
2626
.trim() + "\n";

0 commit comments

Comments
 (0)