mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
15 lines
392 B
PowerShell
15 lines
392 B
PowerShell
################################################################################
|
|
## File: Validate-Svn.ps1
|
|
## Desc: Validate Subversion
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'svn')
|
|
{
|
|
Write-Host "Subversion $(svn --version --quiet) is on the path."
|
|
}
|
|
else
|
|
{
|
|
Write-Host "Subversion is not on the path."
|
|
exit 1
|
|
}
|