Skip to content

Commit a9fadc9

Browse files
authored
build.ps1: Minor cleanup (#55)
* build.ps1: Minor cleanup Makes the diagnostics text somewhat nicer to read. * Minor fix
1 parent 7e6305f commit a9fadc9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -410,8 +410,8 @@ function DownloadCefBinaryAndUnzip()
410410

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

@@ -436,8 +436,8 @@ function DownloadCefBinaryAndUnzip()
436436
if(-not (Test-Path $LocalFile))
437437
{
438438

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

0 commit comments

Comments
 (0)