From 1748eef4cd8b6b7b1dbaf33b13bb4894b554990f Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Fri, 14 Dec 2018 19:54:56 +0700 Subject: [PATCH] Fix error message about incorrect kotlin.native.home property --- .../jetbrains/kotlin/compilerRunner/KotlinNativeToolRunner.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/compilerRunner/KotlinNativeToolRunner.kt b/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/compilerRunner/KotlinNativeToolRunner.kt index 6d5b9e42699..803d5debc7d 100644 --- a/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/compilerRunner/KotlinNativeToolRunner.kt +++ b/libraries/tools/kotlin-gradle-plugin/src/main/kotlin/org/jetbrains/kotlin/compilerRunner/KotlinNativeToolRunner.kt @@ -123,7 +123,7 @@ internal abstract class KonanCliRunner( if (classpath.isEmpty) { throw IllegalStateException( "Classpath of the tool is empty: $toolName\n" + - "Probably the '${KotlinNativeProjectProperty.KONAN_HOME_OVERRIDE}' project property contains an incorrect path.\n" + + "Probably the '${KotlinNativeProjectProperty.KONAN_HOME_OVERRIDE.propertyName}' project property contains an incorrect path.\n" + "Please change it to the compiler root directory and rerun the build." ) }