File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed
ReleaseTooling/Sources/ZipBuilder Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -674,20 +674,6 @@ struct FrameworkBuilder {
674
674
includingPropertiesForKeys: nil
675
675
)
676
676
. filter { $0. pathExtension == " bundle " }
677
- // TODO(ncooke3): Once the zip is built with Xcode 15, the following
678
- // `filter` can be removed. The following block exists to preserve
679
- // how resources (e.g. like FIAM's) are packaged for use in Xcode 14.
680
- . filter { bundleURL in
681
- let dirEnum = fileManager. enumerator ( atPath: bundleURL. path)
682
- var containsPrivacyManifest = false
683
- while let relativeFilePath = dirEnum? . nextObject ( ) as? String {
684
- if relativeFilePath. hasSuffix ( " PrivacyInfo.xcprivacy " ) {
685
- containsPrivacyManifest = true
686
- break
687
- }
688
- }
689
- return containsPrivacyManifest
690
- }
691
677
// Bundles are moved rather than copied to prevent them from being
692
678
// packaged in a `Resources` directory at the root of the xcframework.
693
679
. forEach { try ! fileManager. moveItem (
You can’t perform that action at this time.
0 commit comments