Files
runner-images-sangeeth/images/win/scripts/Installers/Validate-Bazel.ps1
2020-06-02 20:07:12 +03:00

27 lines
555 B
PowerShell

################################################################################
## File: Validate-Bazel.ps1
## Desc: Validate Bazel and Bazelisk (A user-friendly launcher for Bazel)
################################################################################
if (Get-Command -Name 'bazel')
{
Write-Host 'bazel on path'
}
else
{
Write-Host 'bazel is not on path'
exit 1
}
if (Get-Command -Name 'bazelisk')
{
Write-Host 'bazelisk on path'
}
else
{
Write-Host 'bazelisk is not on path'
exit 1
}