From 087a3aa1d652e5389ff1f445c294e800df517c33 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 15 Jul 2023 18:45:44 +0200 Subject: [PATCH] Fix non-functioning code --- scripts/Windows/OS/Install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Install.ps1 index 346672f4..544d12b1 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -14,7 +14,7 @@ function Invoke-WindowsInstallation([Context] $context) if (-not $context.Get("SoftwarePrerequisitesInstalled")) { Write-Host "Installing prerequisites for installing software"; - Install-Module -AcceptLicense -Force "$module"; + Install-Module -AcceptLicense -Force "NuGet"; Import-Module NuGet; choco install -y selenium-gecko-driver;