Skip to content

Commit

Permalink
Fix handling of Xcode project paths containing spaces. Closes #747
Browse files Browse the repository at this point in the history
  • Loading branch information
ileitch committed May 25, 2024
1 parent 24ccf25 commit a15cbdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
##### Bug Fixes

- Disable unused import analysis for files retained with `--retain-files`.
- Fix handling of Xcode project paths containing spaces.

## 2.19.0 (2024-05-20)

Expand Down
2 changes: 1 addition & 1 deletion Sources/XcodeSupport/Xcodebuild.swift
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public final class Xcodebuild {

func schemes(type: String, path: String, additionalArguments: [String]) throws -> Set<String> {
let args = [
"-\(type)", path,
"-\(type)", "'\(path)'",
"-list",
"-json"
]
Expand Down

0 comments on commit a15cbdf

Please sign in to comment.