From 3bbc0dc753c336e98d80dc62539252fb3ead80f1 Mon Sep 17 00:00:00 2001 From: Mikhail Koliada <88318005+mikhailkoliada@users.noreply.github.com> Date: Fri, 17 Nov 2023 13:26:45 +0100 Subject: [PATCH] [packer] fix install-powershell script name (#8834) --- images/windows/templates/windows-2019.json | 2 +- images/windows/templates/windows-2022.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/images/windows/templates/windows-2019.json b/images/windows/templates/windows-2019.json index 7dcd0335..8c6bd319 100644 --- a/images/windows/templates/windows-2019.json +++ b/images/windows/templates/windows-2019.json @@ -151,7 +151,7 @@ "scripts": [ "{{ template_dir }}/../scripts/build/Configure-WindowsDefender.ps1", "{{ template_dir }}/../scripts/build/Configure-PowerShell.ps1", - "{{ template_dir }}/../scripts/build/Install-PowershellModules.ps1", + "{{ template_dir }}/../scripts/build/Install-PowerShellModules.ps1", "{{ template_dir }}/../scripts/build/Install-WindowsFeatures.ps1", "{{ template_dir }}/../scripts/build/Install-Chocolatey.ps1", "{{ template_dir }}/../scripts/build/Configure-BaseImage.ps1", diff --git a/images/windows/templates/windows-2022.json b/images/windows/templates/windows-2022.json index 871d6aac..fd9ed205 100644 --- a/images/windows/templates/windows-2022.json +++ b/images/windows/templates/windows-2022.json @@ -135,7 +135,7 @@ "scripts": [ "{{ template_dir }}/../scripts/build/Configure-WindowsDefender.ps1", "{{ template_dir }}/../scripts/build/Configure-PowerShell.ps1", - "{{ template_dir }}/../scripts/build/Install-PowershellModules.ps1", + "{{ template_dir }}/../scripts/build/Install-PowerShellModules.ps1", "{{ template_dir }}/../scripts/build/Install-WindowsFeatures.ps1", "{{ template_dir }}/../scripts/build/Install-Chocolatey.ps1", "{{ template_dir }}/../scripts/build/Configure-BaseImage.ps1",