mirror of
https://github.com/actions/runner-images.git
synced 2025-12-19 08:22:12 +00:00
16 lines
339 B
PowerShell
16 lines
339 B
PowerShell
################################################################################
|
|
## File: Validate-Perl.ps1
|
|
## Desc: Validate perl
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'perl')
|
|
{
|
|
Write-Host 'perl on path'
|
|
}
|
|
else
|
|
{
|
|
Write-Host 'perl is not on path'
|
|
exit 1
|
|
}
|
|
|