mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
11 lines
390 B
PowerShell
11 lines
390 B
PowerShell
################################################################################
|
|
## File: Install-Mercurial.ps1
|
|
## Desc: Install Mercurial
|
|
################################################################################
|
|
|
|
Choco-Install -PackageName hg -ArgumentList "--version", "5.0.0"
|
|
|
|
$hgPath = "${env:ProgramFiles}\Mercurial\"
|
|
Add-MachinePathItem $hgPath
|
|
$env:Path = Get-MachinePath
|