mirror of
https://github.com/actions/runner-images.git
synced 2025-12-24 10:28:00 +08:00
16 lines
329 B
PowerShell
16 lines
329 B
PowerShell
################################################################################
|
|
## File: Validate-Jq.ps1
|
|
## Desc: Validate jq
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'jq')
|
|
{
|
|
Write-Host 'jq on path'
|
|
}
|
|
else
|
|
{
|
|
Write-Host 'jq is not on path'
|
|
exit 1
|
|
}
|
|
|