mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
Split lockfile.zig into a more logical directory structure (#19858)
This commit is contained in:
@@ -18,10 +18,12 @@ async function globSources(output, patterns, excludes = []) {
|
||||
}
|
||||
total += paths.length;
|
||||
|
||||
const sources = paths
|
||||
.map(path => normalize(relative(root, path)))
|
||||
.sort((a, b) => a.localeCompare(b))
|
||||
.join("\n");
|
||||
const sources =
|
||||
paths
|
||||
.map(path => normalize(relative(root, path)))
|
||||
.sort((a, b) => a.localeCompare(b))
|
||||
.join("\n")
|
||||
.trim() + "\n";
|
||||
|
||||
await write(join(root, "cmake", "sources", output), sources);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user