Replace deprecated konan.home with org.jetbrains.kotlin.native.home

This commit is contained in:
Pavel Punegov
2019-01-24 15:53:12 +03:00
committed by Pavel Punegov
parent 6e8a56f00a
commit 9c3a1332d5
18 changed files with 33 additions and 29 deletions
@@ -31,7 +31,7 @@ class Distribution(
private fun findKonanHome(): String {
if (konanHomeOverride != null) return konanHomeOverride
val value = System.getProperty("konan.home", "dist")
val value = System.getProperty("org.jetbrains.kotlin.native.home", "dist")
val path = File(value).absolutePath
return path
}