From 5ecfe8166ba5a8bc337480c79793d4133be8eb46 Mon Sep 17 00:00:00 2001 From: Per Lundberg Date: Sat, 2 Dec 2017 16:25:37 +0200 Subject: [PATCH 1/2] build.ps1: Minor cleanup Makes the diagnostics text somewhat nicer to read. --- build.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.ps1 b/build.ps1 index 0be91a3..88bbcec 100644 --- a/build.ps1 +++ b/build.ps1 @@ -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" } @@ -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" } From 8e64356b252b99a3b2294a4037328ea81d2777f9 Mon Sep 17 00:00:00 2001 From: Per Lundberg Date: Sun, 3 Dec 2017 01:02:55 +0200 Subject: [PATCH 2/2] Minor fix --- build.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.ps1 b/build.ps1 index 88bbcec..91dfa9b 100644 --- a/build.ps1 +++ b/build.ps1 @@ -410,7 +410,7 @@ function DownloadCefBinaryAndUnzip() if(-not (Test-Path $LocalFile)) { - Write-Diagnostic "Downloading $Cef32FileName; This will take a while as the file is approximately 200 MiB large." + 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" } @@ -436,7 +436,7 @@ function DownloadCefBinaryAndUnzip() if(-not (Test-Path $LocalFile)) { - Write-Diagnostic "Downloading $Cef64FileName; This will take a while as the file is approximately 200 MiB large." + 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" }