Skip to content

Commit b18dde9

Browse files
committed
build.ps1 - Fix mistake in SHA1 checking
1 parent 7d712fd commit b18dde9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ try
554554
Write-Diagnostic "Downloading $Cef64FileName; this will take a while as the file is $Cef64FileSize MB."
555555
$Client.DownloadFile($CefBuildServerUrl + $Cef64FileName, $LocalFile);
556556

557-
$Cef32LocalFileHash = (Get-FileHash -Path $LocalFile -Algorithm SHA1).Hash
557+
$Cef64LocalFileHash = (Get-FileHash -Path $LocalFile -Algorithm SHA1).Hash
558558

559559
Write-Diagnostic "Download $Cef64FileName complete"
560560
Write-Diagnostic "Expected SHA1 for $Cef64FileName $Cef64FileHash"

0 commit comments

Comments
 (0)