We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6df8208 commit c8cd11cCopy full SHA for c8cd11c
ReleaseTooling/Sources/ZipBuilder/FrameworkBuilder.swift
@@ -658,6 +658,8 @@ struct FrameworkBuilder {
658
includingPropertiesForKeys: nil
659
)
660
.filter { $0.pathExtension == "bundle" }
661
+ // Filter out `gRPCCertificates-Cpp.bundle` since it is unused.
662
+ .filter { $0.lastPathComponent == "gRPCCertificates-Cpp.bundle" }
663
// Bundles are moved rather than copied to prevent them from being
664
// packaged in a `Resources` directory at the root of the xcframework.
665
.forEach { try! fileManager.moveItem(
0 commit comments