mirror of
https://github.com/actions/runner-images.git
synced 2025-12-27 03:47:40 +08:00
16 lines
354 B
PowerShell
16 lines
354 B
PowerShell
################################################################################
|
|
## File: Validate-Sbt.ps1
|
|
## Desc: Validate sbt for Windows
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'sbt')
|
|
{
|
|
Write-Host 'sbt is on the path'
|
|
}
|
|
else
|
|
{
|
|
Write-Host 'sbt is not on path.'
|
|
exit 1
|
|
}
|
|
|