[K/N][perf] Fix separator stayed wrong after migrating from groovy
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user