Merge remote-tracking branch 'origin/Ghidra_12.1'

This commit is contained in:
Ryan Kurtz
2026-04-14 06:26:56 -04:00
3 changed files with 3 additions and 3 deletions

View File

@@ -124,7 +124,7 @@ public class LaunchSupport {
}
}
catch (Exception e) {
System.err.println(e.getMessage());
e.printStackTrace(System.err);
}
System.exit(exitCode);

View File

@@ -220,7 +220,7 @@ public class LaunchProperties {
String key = entry.getKey();
String value = entry.getValue();
try {
text = text.replaceAll("\\$\\{" + key + "\\}", value.replace("\\", "\\\\"));
text = text.replace("${" + key + "}", value);
}
catch (IllegalArgumentException e) {
String msg =