Skip to content

Commit

Permalink
Filter out pods that aren't releasing in `buildAndAssembleFirebaseRel…
Browse files Browse the repository at this point in the history
…ease`
  • Loading branch information
andrewheard committed Nov 13, 2024
1 parent c471e4f commit f71d02e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ struct ZipBuilder {
/// - Throws: One of many errors that could have happened during the build phase.
func buildAndAssembleFirebaseRelease(templateDir: URL) throws -> ReleaseArtifacts {
let manifest = FirebaseManifest.shared
var podsToInstall = manifest.pods.map {
var podsToInstall = manifest.pods.filter { $0.releasing }.map {
CocoaPodUtils.VersionedPod(name: $0.name,
version: manifest.versionString($0),
platforms: $0.platforms)
Expand Down

0 comments on commit f71d02e

Please sign in to comment.