Skip to content

Commit

Permalink
[NvidiaDriverBridge] fix typo (#4224)
Browse files Browse the repository at this point in the history
  • Loading branch information
tillcash authored Aug 20, 2024
1 parent 320afc3 commit 2d5d2f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bridges/NvidiaDriverBridge.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ public function collectData()
$this->operatingSystem = 'Windows';
break;
case 'Linux':
$whql = $this->getInput('lwwhql');
$whql = $this->getInput('lwhql');
$parameters['osid'] = 12;
$parameters['whql'] = $whql;
$this->operatingSystem = 'Linux';
break;
case 'FreeBSD':
$whql = $this->getInput('fwwhql');
$whql = $this->getInput('fwhql');
$parameters['osid'] = 22;
$parameters['whql'] = $whql;
$this->operatingSystem = 'FreeBSD';
Expand Down

0 comments on commit 2d5d2f5

Please sign in to comment.