2019-12-13 09:48:00 -05:00
|
|
|
################################################################################
|
|
|
|
|
## File: Install-Mercurial.ps1
|
|
|
|
|
## Desc: Install Mercurial
|
|
|
|
|
################################################################################
|
|
|
|
|
|
2020-04-17 10:53:30 +03:00
|
|
|
Choco-Install -PackageName hg -ArgumentList "--version", "5.0.0"
|
2019-12-13 09:48:00 -05:00
|
|
|
|
|
|
|
|
$hgPath = "${env:ProgramFiles}\Mercurial\"
|
|
|
|
|
Add-MachinePathItem $hgPath
|
|
|
|
|
$env:Path = Get-MachinePath
|