mirror of
https://github.com/actions/runner-images.git
synced 2025-12-29 05:17:11 +08:00
15 lines
398 B
PowerShell
15 lines
398 B
PowerShell
################################################################################
|
|
## File: Validate-AliyunCli.ps1
|
|
## Desc: Validate Alibaba Cloud CLI
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'aliyun')
|
|
{
|
|
Write-Host 'Alibaba Cloud CLI on path'
|
|
}
|
|
else
|
|
{
|
|
Write-Host 'Alibaba Cloud CLI is not on path'
|
|
exit 1
|
|
}
|