Skip to content

Commit

Permalink
Fixed input stream not being inherited from current process for proce…
Browse files Browse the repository at this point in the history
…ss operations.
  • Loading branch information
gbevin committed Mar 12, 2024
1 parent 31f9dc3 commit 392ca23
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ protected Process executeStartProcess()
var builder = new ProcessBuilder(executeConstructProcessCommandList());
builder.directory(workDirectory());

builder.redirectInput(ProcessBuilder.Redirect.INHERIT);

final var output_processor = outputProcessor();
if (output_processor == null) {
builder.redirectOutput(ProcessBuilder.Redirect.INHERIT);
Expand Down

0 comments on commit 392ca23

Please sign in to comment.