Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ncooke3 committed Apr 2, 2024
1 parent f98c3f7 commit ff7b64a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ReleaseTooling/Sources/ZipBuilder/ZipBuilder.swift
Original file line number Diff line number Diff line change
Expand Up @@ -699,6 +699,17 @@ struct ZipBuilder {
).filter {
$0.lastPathComponent == "Resources"
}
print("mango: \(resourceDirs)")
let resourceDirs1 = try fileManager.contentsOfDirectory(
at: dir,
includingPropertiesForKeys: [.isDirectoryKey]
)
print("mango: \(resourceDirs1)")
let resourceDirs2 = try fileManager.contentsOfDirectory(
at: dir,
includingPropertiesForKeys: nil
)
print("mango: \(resourceDirs2)")

if !resourceDirs.isEmpty {
result += Constants.resourcesRequiredText
Expand Down

0 comments on commit ff7b64a

Please sign in to comment.