mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
16 lines
351 B
PowerShell
16 lines
351 B
PowerShell
################################################################################
|
|
## File: Validate-MysqlCli.ps1
|
|
## Desc: Validate Mysql Cli
|
|
################################################################################
|
|
|
|
if (Get-Command -Name 'mysql')
|
|
{
|
|
Write-Host 'Mysql is on path'
|
|
}
|
|
else
|
|
{
|
|
Write-Host 'Mysql not on path'
|
|
exit 1
|
|
}
|
|
|