Build: Fix input declaration for :kotlin-stdlib-js-ir:fullRuntimeSources

Input order was random because of unordered set
This commit is contained in:
Vyacheslav Gerasimov
2020-02-05 17:42:06 +03:00
parent bb2cf38617
commit 08ac7da7a6
+1 -1
View File
@@ -42,7 +42,7 @@ dependencies {
} }
val unimplementedNativeBuiltIns = val unimplementedNativeBuiltIns =
(file("$rootDir/core/builtins/native/kotlin/").list().toSet() - file("$rootDir/libraries/stdlib/js-ir/builtins/").list()) (file("$rootDir/core/builtins/native/kotlin/").list().toSortedSet() - file("$rootDir/libraries/stdlib/js-ir/builtins/").list())
.map { "core/builtins/native/kotlin/$it" } .map { "core/builtins/native/kotlin/$it" }
// Required to compile native builtins with the rest of runtime // Required to compile native builtins with the rest of runtime