From 6eefc472fb2d07d8b3902bacb996ad74085cdd01 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 15 Jul 2023 11:33:42 +0200 Subject: [PATCH] Rename driver installation function --- scripts/Windows/OS/Install.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Windows/OS/Install.ps1 b/scripts/Windows/OS/Install.ps1 index 145a4cd7..ccf876c0 100644 --- a/scripts/Windows/OS/Install.ps1 +++ b/scripts/Windows/OS/Install.ps1 @@ -16,9 +16,9 @@ function Invoke-WindowsInstallation([Context] $context) Write-Host "Installing Drivers"; Write-Information "Looking for driver installation function"; - if ((Get-Command Install-Drivers -ErrorAction SilentlyContinue)) { + if ((Get-Command Install-PortValhallaDrivers -ErrorAction SilentlyContinue)) { Write-Information "Driver installation function was found. Starting installation"; - Install-Drivers $context; + Install-PortValhallaDrivers $context; } Write-Information "Finished installing drivers";