Skip to content

Commit

Permalink
fix typo (#2762)
Browse files Browse the repository at this point in the history
  • Loading branch information
tubaobao3 authored Sep 10, 2024
1 parent e126465 commit ee6fca1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ private Process createCommandProcess(Command command, ListIterator<CliToken> tok
stdoutHandlerChain.add(new RedirectHandler());
}
}
ProcessOutput ProcessOutput = new ProcessOutput(stdoutHandlerChain, cacheLocation, term);
ProcessImpl process = new ProcessImpl(command, remaining, command.processHandler(), ProcessOutput, resultDistributor);
ProcessOutput processOutput = new ProcessOutput(stdoutHandlerChain, cacheLocation, term);
ProcessImpl process = new ProcessImpl(command, remaining, command.processHandler(), processOutput, resultDistributor);
process.setTty(term);
return process;
}
Expand Down

0 comments on commit ee6fca1

Please sign in to comment.