fix(lib): forward pwsh stdout on windows debug

This commit is contained in:
Erica Marigold 2024-11-25 11:45:07 +00:00
parent 95afc33630
commit ca881272be

View file

@ -67,7 +67,12 @@ local decompress: { [CompressionFormat]: (compressed: buffer) -> Result<pathfs.A
else CommandBuilder.new("unzip"):withArgs({ tmpFilePath, "-d", decompressedDir:toString() }))
-- FIXME: remove unknown usage
: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(
if process.env.PESDE_LOG == "debug"
then "forward"