File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
cli/src/main/java/com/devonfw/tools/ide/process Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ This file documents all notable changes to https://github.com/devonfw/IDEasy[IDE
66
77Release with new features and bugfixes:
88
9+ * https://github.com/devonfw/IDEasy/issues/1271[#1271]: After installation of aws 'aws configure' not possible
910* https://github.com/devonfw/IDEasy/issues/1264[#1264]: Fix ide.bat to detect errors properly
1011* https://github.com/devonfw/IDEasy/issues/1038[#1038]: XML merger fails in native-image on custom XPath with MissingResourceException
1112* https://github.com/devonfw/IDEasy/issues/1213[#1213]: Adapt log entry when tool version is not in compatible range
Original file line number Diff line number Diff line change @@ -165,6 +165,8 @@ public ProcessResult run(ProcessMode processMode) {
165165 this .processBuilder .redirectOutput (Redirect .PIPE ).redirectError (Redirect .PIPE );
166166 } else if (processMode .isBackground ()) {
167167 modifyArgumentsOnBackgroundProcess (processMode );
168+ } else {
169+ this .processBuilder .redirectInput (Redirect .INHERIT );
168170 }
169171
170172 this .processBuilder .command (args );
You can’t perform that action at this time.
0 commit comments