Skip to content

Commit

Permalink
Interops needed for Swift
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 committed Jul 27, 2023
1 parent 1b9cfc5 commit a5f85d7
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
}

Expand Down

0 comments on commit a5f85d7

Please sign in to comment.