mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 22:36:46 +00:00
21 lines
694 B
PowerShell
21 lines
694 B
PowerShell
################################################################################
|
|
## File: Validate-Git.ps1
|
|
## Desc: Validate Git for Windows
|
|
################################################################################
|
|
function Test-CommandName {
|
|
param(
|
|
[parameter(Mandatory)][string] $CommandName
|
|
)
|
|
Write-Host "Checking the [$CommandName]"
|
|
if(-not (Get-Command $CommandName -ErrorAction "Continue")) {
|
|
Write-Host "[!] $CommandName is not found"
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
Test-CommandName -CommandName 'bash'
|
|
Test-CommandName -CommandName 'awk'
|
|
Test-CommandName -CommandName 'git'
|
|
Test-CommandName -CommandName 'git-lfs'
|
|
Test-CommandName -CommandName 'hub'
|