We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50cdd86 commit 3c95dbfCopy full SHA for 3c95dbf
src/utils.ts
@@ -172,7 +172,7 @@ export async function validateHardware(): Promise<HardwareValidation> {
172
const res = await execAsync(
173
'powershell.exe -c "$n = \'*NVIDIA*\'; Get-CimInstance win32_videocontroller | ? { $_.Name -like $n -or $_.VideoProcessor -like $n -or $_.AdapterCompatibility -like $n }"'
174
);
175
- if (!res?.stdout) throw new Error('No video card');
+ if (!res?.stdout) throw new Error('No NVIDIA GPU detected');
176
} catch {
177
try {
178
await execAsync('nvidia-smi');
0 commit comments