Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions generate_appcast/ArchiveItem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ class ArchiveItem: CustomStringConvertible {
for case let fileURL as URL in enumerator {
let name = fileURL.lastPathComponent

// Skip Contents/Resources entirely because frameworks shouldn't be in there and we don't want to pay the cost of scanning in there
guard name != "Resources" || fileURL.deletingLastPathComponent().lastPathComponent != "Contents" else {
// Skip Resources in bundles entirely because frameworks shouldn't be in there and we don't want to pay the cost of scanning in there
guard name != "Resources" else {
enumerator.skipDescendants()
continue
}
Expand Down