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

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
}