Skip to content

Commit 2d4365d

Browse files
author
Your Name
committed
Ensure Get-Binary function call is consistent
1 parent a1bfbeb commit 2d4365d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ New-Item -ItemType Directory -Force -Path $TEMP_DIR | Out-Null
388388

389389
# Download
390390
$zipPath = Join-Path $TEMP_DIR $zipName
391-
if (-not (Download-Binary -Url $downloadUrl -OutputPath $zipPath)) {
391+
if (-not (Get-Binary -Url $downloadUrl -OutputPath $zipPath)) {
392392
Remove-Item -Path $TEMP_DIR -Recurse -Force -ErrorAction SilentlyContinue
393393
exit 1
394394
}

0 commit comments

Comments
 (0)