mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
15 lines
361 B
PowerShell
15 lines
361 B
PowerShell
################################################################################
|
|
## File: Validate-AWS-SAM.ps1
|
|
## Desc: Validate aws sam cli
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'sam')
|
|
{
|
|
Write-Host 'AWS SAM CLI on path'
|
|
}
|
|
else
|
|
{
|
|
Write-Host 'AWS SAM CLI is not on path'
|
|
exit 1
|
|
}
|