mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-3154: Updating Guava to 31.1-jre, and other dependent jars
This commit is contained in:
parent
f56e922d43
commit
f43f411047
9 changed files with 61 additions and 132 deletions
|
@ -238,6 +238,10 @@ public class GhidraLauncher {
|
|||
String path = line.trim();
|
||||
if (!path.startsWith("Module:") && path.endsWith(".jar")) {
|
||||
ResourceFile jarFile = new ResourceFile(path);
|
||||
if (path.startsWith("#") || path.startsWith("//")) {
|
||||
System.err.println("Skipping jar file: " + jarFile);
|
||||
continue;
|
||||
}
|
||||
if (!jarFile.isFile()) {
|
||||
System.err.println("Failed to find required jar file: " + jarFile);
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue