From 1a8573c4c1c2f1f0cf6b1482094e2f793bb50d0f Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Wed, 2 May 2018 02:34:57 +0200 Subject: [PATCH] ci: write less verbose log output when installing the LSP --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index a11891b..4f0edbe 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -103,6 +103,7 @@ install: Install-Product node 'Current' if ($env:lsp) { + echo "Installing Proxifier LSP..." if (!(Test-Path c:\proxif\setup.exe)) { $null = &mkdir -Force c:\proxif Invoke-WebRequest -Uri http://www.proxifier.com/download/ProxifierSetup.exe -OutFile "c:\proxif\setup.exe" @@ -111,7 +112,6 @@ install: Start-Process -Wait c:\proxif\setup.exe -ArgumentList /silent,/norestart $catalog = &netsh winsock show catalog - echo $catalog if (!($catalog -like "*Layered Chain Entry*")) { throw "LSP not installed" }