mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
15 lines
355 B
PowerShell
15 lines
355 B
PowerShell
################################################################################
|
|
## File: Validate-Kind.ps1
|
|
## Desc: Validate Kind.
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'kind')
|
|
{
|
|
Write-Host "kind $(kind version) in path"
|
|
}
|
|
else
|
|
{
|
|
Write-Host "kind is not in path"
|
|
exit 1
|
|
}
|