Skip to content

Commit f71d02e

Browse files
committed
Filter out pods that aren't releasing in buildAndAssembleFirebaseRelease
1 parent c471e4f commit f71d02e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ struct ZipBuilder {
361361
/// - Throws: One of many errors that could have happened during the build phase.
362362
func buildAndAssembleFirebaseRelease(templateDir: URL) throws -> ReleaseArtifacts {
363363
let manifest = FirebaseManifest.shared
364-
var podsToInstall = manifest.pods.map {
364+
var podsToInstall = manifest.pods.filter { $0.releasing }.map {
365365
CocoaPodUtils.VersionedPod(name: $0.name,
366366
version: manifest.versionString($0),
367367
platforms: $0.platforms)

0 commit comments

Comments
 (0)