[K/N][perf] Fix separator stayed wrong after migrating from groovy

This commit is contained in:
Elena Lepilkina
2021-06-15 14:35:17 +03:00
committed by Space
parent 9fa0cf132f
commit 6aba6ea670
@@ -33,7 +33,7 @@ internal val Project.nativeBenchResults: String
// Gradle property to add flags to benchmarks run from command line.
internal val Project.compilerArgs: List<String>
get() = (findProperty("compilerArgs") as String?)?.split("\\s").orEmpty()
get() = (findProperty("compilerArgs") as String?)?.split("\\s".toRegex()).orEmpty()
internal val Project.kotlinVersion: String
get() = property("kotlinVersion") as String