Skip to content

Commit

Permalink
ZipBuilder workaround (#7286)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulb777 authored Jan 12, 2021
1 parent 6c32eb1 commit 3721a5b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,12 @@ struct ZipBuilder {
}
}
// Union all pods built across platforms.
podsBuilt[podName] = podInfo
// Be conservative and favor iOS if it exists - and workaround
// bug where Firebase.h doesn't get installed for tvOS and macOS.
// Fixed in #7284.
if podsBuilt[podName] == nil {
podsBuilt[podName] = podInfo
}
}
}

Expand Down

0 comments on commit 3721a5b

Please sign in to comment.