Skip to content

Commit

Permalink
Merge branch 'GT-0_ghidra1_PR-1906_ryanmkurtz_IgnoreForkFiles'
Browse files Browse the repository at this point in the history
  • Loading branch information
ghidra1 committed Jul 30, 2020
2 parents 0c316a9 + 539710c commit a77dcf7
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -161,6 +161,12 @@ private void accumulateFilesByExtension(String extension, ResourceFile dir,
}
}
else {

// Ignore ._ resource fork files
if (child.getName().startsWith("._")) {
continue;
}

if (child.getName().endsWith(extension)) {
accumulator.add(child);
}
Expand Down

0 comments on commit a77dcf7

Please sign in to comment.