From 95fc7f1e84ba51e4218d3fdd95200ad475873c46 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 4 Aug 2023 01:33:42 +0200 Subject: [PATCH] Fix incorrectly named parameter --- 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 c2e7692d9..afc1630c7 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -35,7 +35,7 @@ function Invoke-WindowsInstallation([Context] $context) Install-Firefox $context; choco install -y selenium-gecko-driver; - $null = Install-Package -Force Selenium.WebDriver -Version 4.10.0 -SkipDependencies; + $null = Install-Package -Force Selenium.WebDriver -RequiredVersion 4.10.0 -SkipDependencies; winget install --accept-source-agreements --accept-package-agreements -e --id AutoHotkey.AutoHotkey;