From 8d6b1b8bafe8fe336cd3e9681c071e7b76a5d338 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 2 Aug 2024 00:47:33 +0200 Subject: [PATCH] Make config module persist in WSL --- scripts/Windows/OS/Install.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Install.ps1 index 97c1af65..3ea82bfe 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -17,6 +17,7 @@ $null = New-Module { Finishes the installation of a running Windows machine. #> function Start-WindowsInstallation { + $env:WSLENV = "CONFIG_MODULE/p"; $ErrorActionPreference = 'Inquire'; Start-InstallationLoop; }