Skip to content

Commit b434e3d

Browse files
mMaxySpace Team
authored andcommitted
KT-80205: correct format of a call for -plugin-path option
Merge-request: KT-MR-23292 Merged-by: Artem Olkov <[email protected]> (cherry picked from commit fd87a45)
1 parent c4586a6 commit b434e3d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

native/swift/swift-export-standalone-integration-tests/src/org/jetbrains/kotlin/swiftexport/standalone/test/AbstractSwiftExportExecutionTest.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ abstract class AbstractSwiftExportExecutionTest : AbstractSwiftExportTest() {
9090
"-F", testRunSettings.systemFrameworksPath,
9191
"-Xlinker", "-rpath", "-Xlinker", testRunSettings.systemFrameworksPath,
9292
"-framework", "Testing",
93-
testRunSettings.systemToolchainPath?.let { "-plugin-path ${it}/usr/lib/swift/host/plugins/testing/" }
93+
testRunSettings.systemToolchainPath?.let { "-plugin-path" },
94+
testRunSettings.systemToolchainPath?.let { "${it}/usr/lib/swift/host/plugins/testing/" },
9495
)
9596

9697
val success = SwiftCompilation(

0 commit comments

Comments
 (0)