installer/build.ps1: update to use TLS 1.2 when downloading from github due to https://blog.github.com/2018-02-23-weak-cryptographic-standards-removed/, fixes usage on Win10

This commit is contained in:
Martin Lindhe 2018-03-14 11:11:36 +01:00
parent df0db7a54f
commit 191debeed6
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ $sourceDir = mkdir -Force Source
mkdir -Force Work,Output | Out-Null mkdir -Force Work,Output | Out-Null
Write-Verbose "Downloading WiX..." Write-Verbose "Downloading WiX..."
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
Get-FileIfNotExists "https://github.com/wixtoolset/wix3/releases/download/wix311rtm/wix311-binaries.zip" "$sourceDir\wix-binaries.zip" Get-FileIfNotExists "https://github.com/wixtoolset/wix3/releases/download/wix311rtm/wix311-binaries.zip" "$sourceDir\wix-binaries.zip"
mkdir -Force WiX | Out-Null mkdir -Force WiX | Out-Null
Expand-Archive -Path "${sourceDir}\wix-binaries.zip" -DestinationPath WiX -Force Expand-Archive -Path "${sourceDir}\wix-binaries.zip" -DestinationPath WiX -Force