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

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
}