Detect installation properly

This commit is contained in:
Manuel Thalmann 2024-08-09 02:24:59 +02:00
parent c1d1bb14f1
commit f418daa4c9

View file

@ -141,10 +141,10 @@ $null = New-Module {
$arguments = [hashtable]@{ }; $arguments = [hashtable]@{ };
if ($Action) { if ($Action) {
$install = $true; $install = ($Action -eq ([InstallerAction]::Install));
$null = $arguments.Add("action", $Action); $null = $arguments.Add("action", $Action);
} else { } else {
$install = ($Action -eq ([InstallerAction]::Install)); $install = $true;
} }
# Drivers # Drivers