Skip to content

Commit

Permalink
build.ps1: Minor cleanup (#55)
Browse files Browse the repository at this point in the history
* build.ps1: Minor cleanup

Makes the diagnostics text somewhat nicer to read.

* Minor fix
  • Loading branch information
perlun authored Dec 2, 2017
1 parent 7e6305f commit a9fadc9
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit a9fadc9

Please sign in to comment.