mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-14 22:09:26 +00:00
29 lines
651 B
PowerShell
29 lines
651 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
|
|
}
|
|
|
|
# Adding description of the software to Markdown
|
|
$SoftwareName = "Kind"
|
|
|
|
$version = $(kind version)
|
|
|
|
$Description = @"
|
|
_Version:_ $version<br/>
|
|
_Environment:_
|
|
* PATH: contains location of kind.exe
|
|
"@
|
|
|
|
Add-SoftwareDetailsToMarkdown -SoftwareName $SoftwareName -DescriptionMarkdown $Description
|