mirror of
https://github.com/actions/runner-images.git
synced 2025-12-28 20:58:32 +08:00
15 lines
356 B
PowerShell
15 lines
356 B
PowerShell
################################################################################
|
|
## File: Validate-Mercurial.ps1
|
|
## Desc: Validate Mercurial
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'hg')
|
|
{
|
|
Write-Host 'Mercurial on path'
|
|
}
|
|
else
|
|
{
|
|
Write-Host 'Mercurial is not on path'
|
|
exit 1
|
|
}
|