mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
16 lines
370 B
PowerShell
16 lines
370 B
PowerShell
################################################################################
|
|
## File: Validate-AzureCli.ps1
|
|
## Desc: Validate Azure CLI
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'az')
|
|
{
|
|
Write-Host "Azure Cli $(az --version) on path"
|
|
}
|
|
else
|
|
{
|
|
Write-Error "Azure Cli not on path"
|
|
exit 1
|
|
}
|
|
|