From 1996a78b430925e338824b0f0a59d7ba4716b8af Mon Sep 17 00:00:00 2001 From: Mikhail Koliada <88318005+mikhailkoliada@users.noreply.github.com> Date: Mon, 23 May 2022 14:04:06 +0200 Subject: [PATCH] fix Ubuntu 22.04 template extension (#5591) --- helpers/GenerateResourcesAndImage.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/GenerateResourcesAndImage.ps1 b/helpers/GenerateResourcesAndImage.ps1 index 5166d454..e62dd4ad 100644 --- a/helpers/GenerateResourcesAndImage.ps1 +++ b/helpers/GenerateResourcesAndImage.ps1 @@ -34,7 +34,7 @@ Function Get-PackerTemplatePath { $relativeTemplatePath = Join-Path "linux" "ubuntu2004.json" } ([ImageType]::Ubuntu2204) { - $relativeTemplatePath = Join-Path "linux" "ubuntu2204.json" + $relativeTemplatePath = Join-Path "linux" "ubuntu2204.pkr.hcl" } default { throw "Unknown type of image" } }