fix(lib): decompression on windows

* Decompression on windows failed since the `Start-Process` cmdlet exited
  immediately after spawning the process. Fixed by including the `-Wait`
  argument.
* We were using `unzip` on all platforms, and it does not exist on
  Windows. Instead, now we use the `Expand-Archive` cmdlet for
  decompression on windows.
This commit is contained in:
Erica Marigold 2024-11-25 11:24:18 +00:00
parent 50811ad970
commit 3a65776a3c
2 changed files with 8 additions and 4 deletions

View file

@ -58,9 +58,13 @@ local decompress: { [CompressionFormat]: (compressed: buffer) -> Result<pathfs.A
pathfs.writeDir(decompressedDir)
-- Run unzip to decompress the file
local child = CommandBuilder
.new("unzip")
:withArgs({ tmpFilePath, "-d", decompressedDir:toString() })
local child = (if process.os == "windows"
-- Thanks windows :)
then CommandBuilder.new("powershell"):withArgs({
"-ExecutionPolicy RemoteSigned",
`-c \`"Import-Module Microsoft.PowerShell.Archive; Expand-Archive -LiteralPath '{tmpFilePath}' -DestinationPath '{decompressedDir:toString()}'\`"`,
})
else CommandBuilder.new("unzip"):withArgs({ tmpFilePath, "-d", decompressedDir:toString() }))
-- FIXME: remove unknown usage
:withStdioStrategy({
stdout = Option.Some("pipe" :: CommandBuilder.StdioStrategy) :: Option<unknown>,

View file

@ -120,7 +120,7 @@ function CommandBuilder.intoChildProcess(self: CommandBuilder): ChildProcess
for _ = 0, retries do
local spawned = process.spawn(
if process.os == "windows"
then `(Start-Process {self.program} -Passthru -NoNewWindow -ArgumentList \"{argsList}\").Id`
then `(Start-Process {self.program} -Passthru -Wait -ExecutionPolicy Bypass -NoNewWindow -ArgumentList \"{argsList}\").Id`
else `{self.program} {argsList} & echo $!`,
{},
{