mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
12 lines
417 B
PowerShell
12 lines
417 B
PowerShell
################################################################################
|
|
## File: Install-Mercurial.ps1
|
|
## Desc: Install Mercurial
|
|
################################################################################
|
|
|
|
Install-ChocoPackage hg -ArgumentList "--version", "6.3.1"
|
|
|
|
Add-MachinePathItem "${env:ProgramFiles}\Mercurial\"
|
|
Update-Environment
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "Mercurial"
|