Skip to content

Commit 98b285b

Browse files
authored
Merge pull request swiftlang#71482 from tristanlabelle/wix-4.0.4
Update WiX to 4.0.4
2 parents b935996 + 72dc80e commit 98b285b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -449,9 +449,9 @@ function Fetch-Dependencies {
449449
$ProgressPreference = "SilentlyContinue"
450450

451451
$WebClient = New-Object Net.WebClient
452-
$WiXVersion = "4.0.3"
452+
$WiXVersion = "4.0.4"
453453
$WiXURL = "https://www.nuget.org/api/v2/package/wix/$WiXVersion"
454-
$WiXHash = "33B3F28556F2499D10E0E0382ED481BD71BCB6178A20E7AF15A6879571B6BD41"
454+
$WiXHash = "A9CA12214E61BB49430A8C6E5E48AC5AE6F27DC82573B5306955C4D35F2D34E2"
455455

456456
if (-not (Test-Path $BinaryCache\WiX-$WiXVersion.zip)) {
457457
Write-Output "WiX not found. Downloading from nuget.org ..."
@@ -1866,7 +1866,7 @@ function Stage-BuildArtifacts($Arch) {
18661866
} else {
18671867
New-Item -Type Directory -Path "$($Arch.BinaryCache)\installer\$($Arch.VSName)\" -ErrorAction Ignore | Out-Null
18681868
}
1869-
Invoke-Program "$BinaryCache\wix-4.0.3\tools\net6.0\any\wix.exe" -- burn detach "$($Arch.BinaryCache)\installer\Release\$($Arch.VSName)\installer.exe" -engine "$Stage\installer-engine.exe" -intermediateFolder "$($Arch.BinaryCache)\installer\$($Arch.VSName)\"
1869+
Invoke-Program "$BinaryCache\wix-4.0.4\tools\net6.0\any\wix.exe" -- burn detach "$($Arch.BinaryCache)\installer\Release\$($Arch.VSName)\installer.exe" -engine "$Stage\installer-engine.exe" -intermediateFolder "$($Arch.BinaryCache)\installer\$($Arch.VSName)\"
18701870
}
18711871

18721872
#-------------------------------------------------------------------

0 commit comments

Comments
 (0)