Minor: pass -Xrefines-paths in recommended form

KT-55362
This commit is contained in:
Pavel Kirpichenkov
2022-12-22 19:59:34 +02:00
committed by Space Team
parent f9f0f561d7
commit d6a9235d05
@@ -68,7 +68,7 @@ internal fun buildKotlinNativeKlibCompilerArgs(
if (sharedCompilationData != null) {
val refinesPaths = sharedCompilationData.refinesPaths.files
if (refinesPaths.isNotEmpty()) {
addArg("-Xrefines-paths", refinesPaths.joinToString(separator = ",") { it.absolutePath })
add("-Xrefines-paths=${refinesPaths.joinToString(separator = ",") { it.absolutePath }}")
}
}