Files
runner-images/images/win/scripts/Installers/Validate-Zstd.ps1
2020-06-02 20:07:12 +03:00

16 lines
339 B
PowerShell

################################################################################
## File: Validate-zstd.ps1
## Desc: Validate zstd
################################################################################
if (Get-Command -Name 'zstd')
{
Write-Host 'zstd on path'
}
else
{
Write-Host 'zstd is not on path'
exit 1
}