From 6c4e157b5cb65f7e2df27e20ca4a5cb03efae184 Mon Sep 17 00:00:00 2001 From: rbalsleyMSFT <53497092+rbalsleyMSFT@users.noreply.github.com> Date: Fri, 13 Jun 2025 15:01:15 -0700 Subject: [PATCH] Updates module import path Corrects the import path for the common module to `FFU.Common`. --- FFUDevelopment/BuildFFUVM.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FFUDevelopment/BuildFFUVM.ps1 b/FFUDevelopment/BuildFFUVM.ps1 index 72d39f6..0983a0c 100644 --- a/FFUDevelopment/BuildFFUVM.ps1 +++ b/FFUDevelopment/BuildFFUVM.ps1 @@ -419,7 +419,7 @@ if (Get-Module -Name 'FFU.Common.Drivers' -ErrorAction SilentlyContinue) { Remove-Module -Name 'FFU.Common.Drivers' -Force } # Import the required modules -Import-Module "$PSScriptRoot\common" -Force +Import-Module "$PSScriptRoot\FFU.Common" -Force # If a config file is specified and it exists, load it if ($ConfigFile -and (Test-Path -Path $ConfigFile)) {