From 508c4d1a99c03891cb2891bea9dadbd608df05e3 Mon Sep 17 00:00:00 2001 From: Troels Bjerre Lund Date: Thu, 23 Jun 2022 15:44:54 +0200 Subject: [PATCH] [K/N] Fix typo in dependency for build task Typo caused ./gradlew :kotlin-native:build to fail --- kotlin-native/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kotlin-native/build.gradle b/kotlin-native/build.gradle index b67dcbba570..12959e30038 100644 --- a/kotlin-native/build.gradle +++ b/kotlin-native/build.gradle @@ -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) {