From a5f85d770a179baa99a6d31c3dcdc5f33029bc20 Mon Sep 17 00:00:00 2001 From: Paul Beusterien Date: Thu, 27 Jul 2023 07:01:34 -0700 Subject: [PATCH] Interops needed for Swift --- ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift b/ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift index 2e702d5897e..29b1b7ddbc8 100644 --- a/ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift +++ b/ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift @@ -211,10 +211,7 @@ struct ZipBuilder { // build order bugs. // Also AppCheck must be built after other pods so that its restricted architecture // selection does not restrict any of its dependencies. - var sortedPods = podsToBuild.keys.sorted().filter { - // Don't build header-only Interop pods for binary distributions. - !$0.hasSuffix("Interop") - } + var sortedPods = podsToBuild.keys.sorted() sortedPods.removeAll(where: { value in value == "FirebaseAppCheck" @@ -588,9 +585,7 @@ struct ZipBuilder { // it to the destination directory. for podName in installedPods { // Skip the Firebase pod and specifically ignored frameworks. - guard podName != "Firebase", - // Interop pods weren't built, so don't try to copy. - !podName.hasSuffix("Interop") else { + guard podName != "Firebase" else { continue }