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 c3764f0 + 3c999e5 commit b731c23Copy full SHA for b731c23
main.swift
@@ -20,6 +20,11 @@ var stringsUrls: [URL] = []
20
var stringsDictUrls: [URL] = []
21
22
for case let url as URL in enumerator where try url.resourceValues(forKeys: [.isRegularFileKey]).isRegularFile == true {
23
+ // Skip files inside .xcframework directories
24
+ if url.pathComponents.contains(where: { $0.hasSuffix(".xcframework") }) {
25
+ continue
26
+ }
27
+
28
if url.pathExtension == "txt" && url.deletingPathExtension().lastPathComponent == "ignored_translation_keys" {
29
exceptions = try parseExceptionKeys(at: url)
30
}
0 commit comments