From 0c4c15c4ce28a2160020e11419728fd08e4d0f4c Mon Sep 17 00:00:00 2001 From: Calle Pettersson Date: Tue, 27 Jun 2017 14:10:38 +0200 Subject: [PATCH] Update WiX download url (#84) WiX is now on GitHub, which means stable download urls. Yay! --- installer/build.ps1 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/installer/build.ps1 b/installer/build.ps1 index 79f2e597..b89542ee 100644 --- a/installer/build.ps1 +++ b/installer/build.ps1 @@ -42,10 +42,8 @@ function Get-FileIfNotExists { $sourceDir = mkdir -Force Source mkdir -Force Work,Output | Out-Null -Write-Verbose "Downloading files" -# Somewhat obscure url, points to WiX 3.10 binary release Write-Verbose "Downloading WiX..." -Get-FileIfNotExists "http://download-codeplex.sec.s-msft.com/Download/Release?ProjectName=wix&DownloadId=1587180&FileTime=131118854877130000&Build=21050" "$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 Expand-Archive -Path "${sourceDir}\wix-binaries.zip" -DestinationPath WiX -Force