mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-11 03:57:29 +00:00
11 lines
361 B
PowerShell
11 lines
361 B
PowerShell
################################################################################
|
|
## File: Install-Mercurial.ps1
|
|
## Desc: Install Mercurial
|
|
################################################################################
|
|
|
|
choco install hg -y --version 5.0.0
|
|
|
|
$hgPath = "${env:ProgramFiles}\Mercurial\"
|
|
Add-MachinePathItem $hgPath
|
|
$env:Path = Get-MachinePath
|