Files
runner-images/images/win/scripts/Installers/Validate-Zstd.ps1
T

16 lines
339 B
PowerShell
Raw Normal View History

2020-02-17 09:01:43 +09:00
################################################################################
## File: Validate-zstd.ps1
## Desc: Validate zstd
################################################################################
if (Get-Command -Name 'zstd')
{
Write-Host 'zstd on path'
2020-02-17 09:01:43 +09:00
}
else
{
Write-Host 'zstd is not on path'
exit 1
}