Skip to content

Commit 91c6e5e

Browse files
Make the build order deterministic
1 parent 3df9a03 commit 91c6e5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/PackageToJS/MiniMake.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ struct MiniMake {
153153
guard !task.isDone else { return }
154154

155155
// Build dependencies first
156-
for want in task.wants {
156+
for want in task.wants.sorted() {
157157
try runTask(taskKey: want)
158158
}
159159

0 commit comments

Comments
 (0)