mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 22:36:46 +00:00
16 lines
337 B
PowerShell
16 lines
337 B
PowerShell
################################################################################
|
|
## File: Validate-7zip.ps1
|
|
## Desc: Validate 7zip
|
|
################################################################################
|
|
|
|
if (Get-Command -Name '7z')
|
|
{
|
|
Write-Host '7zip on path'
|
|
}
|
|
else
|
|
{
|
|
Write-Host '7zip is not on path'
|
|
exit 1
|
|
}
|
|
|