GP-5029 added space

This commit is contained in:
James 2024-11-07 18:08:29 +00:00
parent d74764ebf5
commit 1e0df782b5

View File

@ -670,8 +670,7 @@ public class BSimControlLaunchable implements GhidraLaunchable {
/**
* Invoke an external executable/command, display the output and error streams on the console,
* the exit condition of the command is returned. If the exit condition indicates and error,
* but a line of the error stream matches a provided String, the error is suppressed
* and return the exit value of the command.
* @param directory is the working directory for the command
* @param command is the command-line (including arguments)
* @param envvar if non-null, is an environment variable to set for the command
@ -1521,7 +1520,7 @@ public class BSimControlLaunchable implements GhidraLaunchable {
try {
while ((line = shellOutput.readLine()) != null) {
if (!suppressOutput) {
System.out.println(line);
System.out.println(" " + line);
}
}
}