fix: Do not redirect error output

This commit is contained in:
FalsePattern 2024-10-25 13:32:23 +02:00
parent 2dec61ffe8
commit 7f30c1aea4
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23
2 changed files with 7 additions and 2 deletions

View file

@ -17,12 +17,19 @@ Changelog structure reference:
## [Unreleased]
### Changed
- Runner
- Error output is no longer redirected to standard output
### Fixed
- Runner
- The process execution pipeline is now fully asynchronous
- Debugger
- Zig compilation will no longer cause random IDE freezes
- LSP
- Rare error when checking LSP presence
## [18.1.0]
@ -35,7 +42,6 @@ Changelog structure reference:
- LSP
- No more error spam when zig or zls binary is missing
- Rare error when checking LSP presence
## [18.0.0]

View file

@ -61,7 +61,6 @@ public abstract class ProfileStateBase<T extends ZigExecConfigBase<T>> extends C
cli.setExePath(zigExecutablePath.toString());
workingDirectory.getPath().ifPresent(x -> cli.setWorkDirectory(x.toFile()));
cli.setCharset(StandardCharsets.UTF_8);
cli.setRedirectErrorStream(true);
cli.addParameters(configuration.buildCommandLineArgs(debug));
return cli;
}