From 79bc06af90447022685a12f2a388615250a0e746 Mon Sep 17 00:00:00 2001 From: Paulo Santos Date: Tue, 13 Jan 2026 11:53:09 +0000 Subject: [PATCH] clean: shift enum order --- helpers/GenerateResourcesAndImage.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helpers/GenerateResourcesAndImage.ps1 b/helpers/GenerateResourcesAndImage.ps1 index d1579cac5..8e195e9a4 100644 --- a/helpers/GenerateResourcesAndImage.ps1 +++ b/helpers/GenerateResourcesAndImage.ps1 @@ -1,10 +1,10 @@ $ErrorActionPreference = 'Stop' enum ImageType { - Windows2022 = 2 - Windows2025 = 3 - Ubuntu2204 = 4 - Ubuntu2404 = 5 + Windows2022 = 1 + Windows2025 = 2 + Ubuntu2204 = 3 + Ubuntu2404 = 4 } Function Get-PackerTemplate {