mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 22:36:46 +00:00
17 lines
359 B
PowerShell
17 lines
359 B
PowerShell
################################################################################
|
|
## File: Validate-Cmake.ps1
|
|
## Desc: Validate Cmake
|
|
################################################################################
|
|
|
|
if(Get-Command -Name 'cmake')
|
|
{
|
|
Write-Host "CMake $(cmake -version) on path"
|
|
}
|
|
else
|
|
{
|
|
Write-Host "CMake not on path"
|
|
exit 1
|
|
}
|
|
|
|
|