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.
2 parents 5dc9498 + 20ad352 commit dbeb112Copy full SHA for dbeb112
Sources/RswiftParsers/Resources/AssetCatalog+Parser.swift
@@ -53,7 +53,7 @@ extension AssetCatalog: SupportedExtensions {
53
var namespaces: [URL: NamespaceDirectory] = [URL(fileURLWithPath: ".", relativeTo: catalogURL): root]
54
55
for case let fileURL as URL in directoryEnumerator {
56
- guard fileURL.baseURL == catalogURL else {
+ guard fileURL.baseURL?.resolvingSymlinksInPath() == catalogURL.resolvingSymlinksInPath() else {
57
throw ResourceParsingError("File \(fileURL) is not in AssetCatalog \(catalogURL)")
58
}
59
0 commit comments