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.
1 parent c3764f0 commit 3c999e5Copy full SHA for 3c999e5
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