fix: Do not redirect error output
This commit is contained in:
parent
2dec61ffe8
commit
7f30c1aea4
2 changed files with 7 additions and 2 deletions
|
@ -17,12 +17,19 @@ Changelog structure reference:
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Runner
|
||||||
|
- Error output is no longer redirected to standard output
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Runner
|
- Runner
|
||||||
- The process execution pipeline is now fully asynchronous
|
- The process execution pipeline is now fully asynchronous
|
||||||
- Debugger
|
- Debugger
|
||||||
- Zig compilation will no longer cause random IDE freezes
|
- Zig compilation will no longer cause random IDE freezes
|
||||||
|
- LSP
|
||||||
|
- Rare error when checking LSP presence
|
||||||
|
|
||||||
## [18.1.0]
|
## [18.1.0]
|
||||||
|
|
||||||
|
@ -35,7 +42,6 @@ Changelog structure reference:
|
||||||
|
|
||||||
- LSP
|
- LSP
|
||||||
- No more error spam when zig or zls binary is missing
|
- No more error spam when zig or zls binary is missing
|
||||||
- Rare error when checking LSP presence
|
|
||||||
|
|
||||||
## [18.0.0]
|
## [18.0.0]
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,6 @@ public abstract class ProfileStateBase<T extends ZigExecConfigBase<T>> extends C
|
||||||
cli.setExePath(zigExecutablePath.toString());
|
cli.setExePath(zigExecutablePath.toString());
|
||||||
workingDirectory.getPath().ifPresent(x -> cli.setWorkDirectory(x.toFile()));
|
workingDirectory.getPath().ifPresent(x -> cli.setWorkDirectory(x.toFile()));
|
||||||
cli.setCharset(StandardCharsets.UTF_8);
|
cli.setCharset(StandardCharsets.UTF_8);
|
||||||
cli.setRedirectErrorStream(true);
|
|
||||||
cli.addParameters(configuration.buildCommandLineArgs(debug));
|
cli.addParameters(configuration.buildCommandLineArgs(debug));
|
||||||
return cli;
|
return cli;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue