Files
runner-images/images/win/scripts/Installers/Validate-Bazel.ps1
2020-03-10 17:30:00 +03:00

24 lines
686 B
PowerShell

################################################################################
## File: Validate-Bazel.ps1
## Desc: Validate Bazel
################################################################################
if (Get-Command -Name 'bazel')
{
Write-Host "bazel on path"
}
else
{
Write-Host 'bazel is not on path'
exit 1
}
# Adding description of the software to Markdown
$SoftwareName = "bazel"
$Description = @"
_Version:_ $(bazel --version)<br/>
"@
Add-SoftwareDetailsToMarkdown -SoftwareName $SoftwareName -DescriptionMarkdown $Description
Add-SoftwareDetailsToMarkdown -SoftwareName "Test Software" -DescriptionMarkdown "Test Software"