Skip to content

Commit

Permalink
perf: improve performance of PowerShell installer (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkTiedemann committed Jun 23, 2022
1 parent dabf1ac commit 3c0cd27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ if (!(Test-Path $BinDir)) {
New-Item $BinDir -ItemType Directory | Out-Null
}

Invoke-WebRequest $DenoUri -OutFile $DenoZip -UseBasicParsing
curl.exe -Lo $DenoZip $DenoUri

Expand-Archive $DenoZip -Destination $BinDir -Force
tar.exe xf $DenoZip -C $BinDir

Remove-Item $DenoZip

Expand Down

0 comments on commit 3c0cd27

Please sign in to comment.