mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
15 lines
522 B
PowerShell
15 lines
522 B
PowerShell
################################################################################
|
|
## File: Install-NSIS.ps1
|
|
## Desc: Install NSIS
|
|
## Supply chain security: NSIS - managed by package manager
|
|
################################################################################
|
|
|
|
$NsisVersion = (Get-ToolsetContent).nsis.version
|
|
|
|
Install-ChocoPackage nsis -ArgumentList "--version", "$NsisVersion"
|
|
|
|
Add-MachinePathItem "${env:ProgramFiles(x86)}\NSIS\"
|
|
Update-Environment
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "NSIS"
|