[NvidiaDriverBridge] fix typo (#4224)

This commit is contained in:
tillcash 2024-08-20 21:02:15 +05:30 committed by GitHub
parent 320afc3f32
commit 2d5d2f5017
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -66,13 +66,13 @@ class NvidiaDriverBridge extends FeedExpander
$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';