mirror of
https://github.com/pesde-pkg/tooling.git
synced 2025-04-05 11:20:56 +01:00
fix(lib): forward pwsh stdout on windows debug
This commit is contained in:
parent
95afc33630
commit
ca881272be
1 changed files with 6 additions and 1 deletions
|
@ -67,7 +67,12 @@ local decompress: { [CompressionFormat]: (compressed: buffer) -> Result<pathfs.A
|
||||||
else CommandBuilder.new("unzip"):withArgs({ tmpFilePath, "-d", decompressedDir:toString() }))
|
else CommandBuilder.new("unzip"):withArgs({ tmpFilePath, "-d", decompressedDir:toString() }))
|
||||||
-- FIXME: remove unknown usage
|
-- FIXME: remove unknown usage
|
||||||
:withStdioStrategy({
|
:withStdioStrategy({
|
||||||
stdout = Option.Some("pipe" :: CommandBuilder.StdioStrategy) :: Option<unknown>,
|
-- Powershell on Windows writes errors to stdout. Bruh
|
||||||
|
stdout = Option.Some(
|
||||||
|
if process.os == "windows" and process.env.PESDE_LOG == "debug"
|
||||||
|
then "forward"
|
||||||
|
else "pipe" :: CommandBuilder.StdioStrategy
|
||||||
|
) :: Option<unknown>,
|
||||||
stderr = Option.Some(
|
stderr = Option.Some(
|
||||||
if process.env.PESDE_LOG == "debug"
|
if process.env.PESDE_LOG == "debug"
|
||||||
then "forward"
|
then "forward"
|
||||||
|
|
Loading…
Add table
Reference in a new issue