Build: Fix kotlinBuildProperties, should always proguard on teamcity

This commit is contained in:
Vyacheslav Gerasimov
2019-07-09 17:41:37 +03:00
parent 8605ad6630
commit ffb65b2655
+1 -1
View File
@@ -76,7 +76,7 @@ class KotlinBuildProperties(
val relocation: Boolean get() = postProcessing
val proguard: Boolean get() = postProcessing && getBoolean("kotlin.build.proguard")
val proguard: Boolean get() = postProcessing && getBoolean("kotlin.build.proguard", isTeamcityBuild)
val jsIrDist: Boolean get() = getBoolean("kotlin.stdlib.js.ir.dist")
}