Install NSIS from Source Forge (#1392)

* Install NSIS from Source Forge

* Switch to 3.06.1

Co-authored-by: Sergey Dolin <v-sedoli@micorosoft.com>
This commit is contained in:
Sergey Dolin
2020-08-12 01:41:25 +05:00
committed by GitHub
parent ef06465440
commit a3eb0ee40a
2 changed files with 2 additions and 3 deletions

View File

@@ -93,8 +93,7 @@ function Get-MercurialVersion {
}
function Get-NSISVersion {
$(choco list --local-only nsis | Out-String) -match "nsis (?<version>\d+\.\d+\.?\d*\.?\d*)" | Out-Null
$nsisVersion = $Matches.Version
$nsisVersion = &"c:\Program Files (x86)\NSIS\makensis.exe" "/Version"
return "NSIS $nsisVersion"
}