Update Install-NSIS.ps1 (#4740)

* Update Install-NSIS.ps1

Update NSIS to 3.08

See notes in #4739

* use  in Install-NSIS.ps1, added nsis to toolset files
This commit is contained in:
Andrew King
2021-12-16 02:57:04 -05:00
committed by GitHub
parent c172738867
commit ff37068951
4 changed files with 12 additions and 2 deletions

View File

@@ -3,7 +3,8 @@
## Desc: Install NSIS ## Desc: Install NSIS
################################################################################ ################################################################################
Install-Binary -Url 'https://downloads.sourceforge.net/project/nsis/NSIS%203/3.06.1/nsis-3.06.1-setup.exe' -Name nsis-3.06.1-setup.exe -ArgumentList ('/S') $NsisVersion = (Get-ToolsetContent).nsis.version
Install-Binary -Url "https://downloads.sourceforge.net/project/nsis/NSIS%203/${NsisVersion}/nsis-${NsisVersion}-setup.exe" -Name "nsis-${NsisVersion}-setup.exe" -ArgumentList ('/S')
$NsisPath = "${env:ProgramFiles(x86)}\NSIS\" $NsisPath = "${env:ProgramFiles(x86)}\NSIS\"
Add-MachinePathItem $NsisPath Add-MachinePathItem $NsisPath

View File

@@ -427,6 +427,9 @@
"mongodb": { "mongodb": {
"version": "5.0" "version": "5.0"
}, },
"nsis": {
"version": "3.08"
},
"php": { "php": {
"version": "8.1" "version": "8.1"
}, },

View File

@@ -459,6 +459,9 @@
"mongodb": { "mongodb": {
"version": "5.0" "version": "5.0"
}, },
"nsis": {
"version": "3.08"
},
"php": { "php": {
"version": "8.1" "version": "8.1"
}, },

View File

@@ -317,6 +317,9 @@
"mongodb": { "mongodb": {
"version": "5.0" "version": "5.0"
}, },
"nsis": {
"version": "3.08"
},
"php": { "php": {
"version": "8.1" "version": "8.1"
}, },