ci: write less verbose log output when installing the LSP

This commit is contained in:
Bert Belder 2018-05-02 02:34:57 +02:00
parent 5bcde85f8b
commit 1a8573c4c1
No known key found for this signature in database
GPG Key ID: 7A77887B2E2ED461

View File

@ -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"
}