Skip to content

Commit

Permalink
Add Swift file path escapes in filelist to support file paths with sp…
Browse files Browse the repository at this point in the history
…aces.
  • Loading branch information
TadeasKriz committed Dec 23, 2023
1 parent 3315d12 commit 015fcb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SKIE/acceptance-tests
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class CompileSwiftPhase(
}

private fun createSwiftFileList(sourceFiles: List<File>) {
val content = sourceFiles.joinToString("\n") { it.absolutePath }
val content = sourceFiles.joinToString("\n") { "'${it.absolutePath}'" }

swiftFileList.writeText(content)
}
Expand Down

0 comments on commit 015fcb8

Please sign in to comment.