We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec320be commit 5806fb9Copy full SHA for 5806fb9
blazew.ps1
@@ -102,7 +102,7 @@ function Install-Node {
102
$ZipPath = Join-Path $BlazeDir "node.zip"
103
$NodeDir = Join-Path $BlazeDir "node"
104
105
- Start-BitsTransfer -Source $Url -Destination $ZipPath
+ Invoke-WebRequest -Uri $Url -OutFile $ZipPath
106
107
if (!$?) {
108
Write-Error "Failed to download Node.js from $Url"
@@ -269,4 +269,4 @@ if (-not (Test-Path $BlazeEntry)) {
269
$Process = Start-Process -FilePath $BUN_EXE -ArgumentList "$BlazeEntry $args" -NoNewWindow -PassThru
270
$Process.WaitForExit()
271
$ExitCode = $Process.ExitCode
272
-exit $ExitCode
+exit $ExitCode
0 commit comments