mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
CI: normalize glob-sources paths to posix paths
This commit is contained in:
@@ -20,7 +20,7 @@ async function globSources(output, patterns, excludes = []) {
|
|||||||
|
|
||||||
const sources =
|
const sources =
|
||||||
paths
|
paths
|
||||||
.map(path => normalize(relative(root, path)))
|
.map(path => normalize(relative(root, path).replaceAll("\\", "/")))
|
||||||
.sort((a, b) => a.localeCompare(b))
|
.sort((a, b) => a.localeCompare(b))
|
||||||
.join("\n")
|
.join("\n")
|
||||||
.trim() + "\n";
|
.trim() + "\n";
|
||||||
|
|||||||
Reference in New Issue
Block a user