Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -410,8 +410,8 @@ function DownloadCefBinaryAndUnzip()

if(-not (Test-Path $LocalFile))
{
Write-Diagnostic "Download $Cef32FileName this will take a while as files are approx 200mb each"
$Client.DownloadFile($CefBuildServerUrl + $Cef32FileName, $LocalFile);
Write-Diagnostic "Downloading $Cef32FileName; this will take a while as the file is approximately 200 MiB large."
$Client.DownloadFile($CefBuildServerUrl + $Cef32FileName, $LocalFile);
Write-Diagnostic "Download $Cef32FileName complete"
}

Expand All @@ -436,8 +436,8 @@ function DownloadCefBinaryAndUnzip()
if(-not (Test-Path $LocalFile))
{

Write-Diagnostic "Download $Cef64FileName this will take a while as files are approx 200mb each"
$Client.DownloadFile($CefBuildServerUrl + $Cef64FileName, $LocalFile);
Write-Diagnostic "Downloading $Cef64FileName; this will take a while as the file is approximately 200 MiB large."
$Client.DownloadFile($CefBuildServerUrl + $Cef64FileName, $LocalFile);
Write-Diagnostic "Download $Cef64FileName complete"
}

Expand Down