File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -47,9 +47,10 @@ public struct Pod {
47
47
return isClosedSource ? " \( name) .podspec.json " : " \( name) .podspec "
48
48
}
49
49
50
- /// Closed source pods do not validate on Xcode 12 until they support the ARM simulator slice.
50
+ /// The Firebase pod does not support import validation with Xcode 12 because of the deprecated
51
+ /// ML pods not supporting the ARM Mac slice.
51
52
public func skipImportValidation( ) -> String {
52
- if isClosedSource || name == " Firebase " {
53
+ if name == " Firebase " {
53
54
return " --skip-import-validation "
54
55
} else {
55
56
return " "
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ enum Push {
53
53
case . trunk:
54
54
return " pod trunk push --skip-tests --synchronous \( warningsOK) " +
55
55
pod
56
- . skipImportValidation ( ) + " ~/.cocoapods/repos/ \( stagingLocation) /Specs/ \( pod. name) / " +
56
+ . skipImportValidation ( ) + " ~/.cocoapods/repos/ \( stagingLocation) / \( pod. name) / " +
57
57
" \( manifest. versionString ( pod) ) / \( pod. name) .podspec.json "
58
58
}
59
59
} ( )
You can’t perform that action at this time.
0 commit comments