mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Merge branch 'GT-0_ghidra1_PR-1906_ryanmkurtz_IgnoreForkFiles'
This commit is contained in:
commit
a77dcf7276
1 changed files with 6 additions and 0 deletions
|
@ -161,6 +161,12 @@ public class GModule {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
||||||
|
// Ignore ._ resource fork files
|
||||||
|
if (child.getName().startsWith("._")) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (child.getName().endsWith(extension)) {
|
if (child.getName().endsWith(extension)) {
|
||||||
accumulator.add(child);
|
accumulator.add(child);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue