mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Merge remote-tracking branch 'origin/GP-522_jpleasu_fix_uninstalled_extension_libs_on_classpath'
This commit is contained in:
commit
c2e8417e44
1 changed files with 5 additions and 0 deletions
|
@ -168,6 +168,11 @@ public class GhidraApplicationLayout extends ApplicationLayout {
|
||||||
extensionModuleDir))) {
|
extensionModuleDir))) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
// Skip extensions slated for cleanup
|
||||||
|
if (new File(extensionModuleDir, ModuleUtilities.MANIFEST_FILE_NAME_UNINSTALLED)
|
||||||
|
.exists()) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
moduleRootDirectories.add(new ResourceFile(extensionModuleDir));
|
moduleRootDirectories.add(new ResourceFile(extensionModuleDir));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue