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