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