|
|
@@ -438,10 +438,11 @@ enum CocoaPodUtils {
|
|
|
if !versionsSpecified, let localURL = LaunchArgs.shared.localPodspecPath {
|
|
|
let podspecs = try! FileManager.default.contentsOfDirectory(atPath: localURL.path)
|
|
|
for podspec in podspecs {
|
|
|
- if (podspec == "FirebaseInstanceID.podspec" ||
|
|
|
+ if podspec == "FirebaseInstanceID.podspec" ||
|
|
|
podspec == "FirebaseInstallations.podspec" ||
|
|
|
- podspec == "FirebaseCoreDiagnostics.podspec") ||
|
|
|
- podspec.starts(with: "Google"), podspec.hasSuffix(".podspec") {
|
|
|
+ podspec == "FirebaseCoreDiagnostics.podspec" ||
|
|
|
+ podspec == "GoogleUtilities.podspec" ||
|
|
|
+ podspec == "GoogleDataTransport.podspec" {
|
|
|
let podName = podspec.replacingOccurrences(of: ".podspec", with: "")
|
|
|
podfile += " pod '\(podName)', :path => '\(localURL.path)/\(podspec)'\n"
|
|
|
}
|