[K/N] Fix typo in dependency for build task

Typo caused ./gradlew :kotlin-native:build to fail
This commit is contained in:
Troels Bjerre Lund
2022-06-23 15:44:54 +02:00
committed by Space
parent e380d7d495
commit 508c4d1a99
+1 -1
View File
@@ -198,7 +198,7 @@ task dist_runtime(dependsOn: "distRuntime")
task cross_dist(dependsOn: "crossDist")
task list_dist(dependsOn: "listDist")
task build {
dependsOn ':dist', ':distPlatformLibs'
dependsOn 'dist', 'distPlatformLibs'
}
task distCommonSources(type: CopyCommonSources) {