mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-16 06:46:48 +00:00
15 lines
344 B
PowerShell
15 lines
344 B
PowerShell
################################################################################
|
|
## File: Validate-GitHub-CLI.ps1
|
|
## Desc: Validate GitHub CLI
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'gh')
|
|
{
|
|
Write-Host 'gh on path'
|
|
}
|
|
else
|
|
{
|
|
Write-Host 'gh is not on path'
|
|
exit 1
|
|
}
|