From 147c2ec6fad04edeccbcf0a16d9cc50fc53aa23c Mon Sep 17 00:00:00 2001 From: Dan Wood <207080+danwood@users.noreply.github.com> Date: Mon, 1 Jun 2026 15:45:12 -0700 Subject: [PATCH] Skip unresolvable subproject file references instead of throwing --- Sources/XcodeSupport/XcodeProject.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/XcodeSupport/XcodeProject.swift b/Sources/XcodeSupport/XcodeProject.swift index 52e7490a01..461aed5cc7 100644 --- a/Sources/XcodeSupport/XcodeProject.swift +++ b/Sources/XcodeSupport/XcodeProject.swift @@ -65,7 +65,7 @@ public final class XcodeProject: XcodeProjectlike { if !path.components.contains("Pods.xcodeproj") { subProjects = try xcodeProject.pbxproj.fileReferences .filter { $0.path?.hasSuffix(".xcodeproj") ?? false } - .compactMap { try $0.fullPath(sourceRoot: sourceRoot.string) } + .compactMap { try? $0.fullPath(sourceRoot: sourceRoot.string) } .compactMap { let projectPath = FilePath($0)