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