Skip to content

Commit 6faaabb

Browse files
#1271: Fixed aws input not being processed (#1305)
Co-authored-by: Jörg Hohwiller <hohwille@users.noreply.github.com>
1 parent c7a8df0 commit 6faaabb

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ This file documents all notable changes to https://github.com/devonfw/IDEasy[IDE
66

77
Release 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

cli/src/main/java/com/devonfw/tools/ide/process/ProcessContextImpl.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)