Skip to content

Commit 3721a5b

Browse files
authored
ZipBuilder workaround (#7286)
1 parent 6c32eb1 commit 3721a5b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift

+6-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,12 @@ struct ZipBuilder {
244244
}
245245
}
246246
// Union all pods built across platforms.
247-
podsBuilt[podName] = podInfo
247+
// Be conservative and favor iOS if it exists - and workaround
248+
// bug where Firebase.h doesn't get installed for tvOS and macOS.
249+
// Fixed in #7284.
250+
if podsBuilt[podName] == nil {
251+
podsBuilt[podName] = podInfo
252+
}
248253
}
249254
}
250255

0 commit comments

Comments
 (0)