We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dda7c81 + 6a76c92 commit 7f50c1eCopy full SHA for 7f50c1e
utils/swift-xcodegen/Sources/SwiftXcodeGen/Generator/ProjectSpec.swift
@@ -130,8 +130,9 @@ extension ProjectSpec {
130
_ path: RelativePath, for description: String
131
) -> RelativePath? {
132
let path = mapKnownPath(path)
133
- guard repoRoot.appending(path).exists else {
134
- log.warning("Skipping \(description) at '\(path)'; does not exist")
+ let absPath = repoRoot.appending(path)
+ guard absPath.exists else {
135
+ log.warning("Skipping \(description) at '\(absPath)'; does not exist")
136
return nil
137
}
138
return path
0 commit comments