mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-24 02:18:40 +08:00
27 lines
555 B
PowerShell
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
|
|
}
|
|
|
|
|