Skip to content

Commit 9acab4a

Browse files
committed
fix test failure when run from through Xcode
1 parent 68b0d12 commit 9acab4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/XcodeGenKit/PBXProjGenerator.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1536,7 +1536,7 @@ public class PBXProjGenerator {
15361536
if path.isFile {
15371537
return path.lastComponent == "Info.plist" ? path : nil
15381538
} else {
1539-
return path.first(where: { $0.lastComponent == "Info.plist" })
1539+
return path.first(where: { $0.lastComponent == "Info.plist" })?.absolute()
15401540
}
15411541
}
15421542
.first

0 commit comments

Comments
 (0)