Skip to content

Commit 728846b

Browse files
authored
fix(launcher): add vcruntime140_1.dll to the list of known deps (#4973)
1 parent 36650b1 commit 728846b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/validateDependencies.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async function validateDependenciesWindows(browserPath: string, browser: Browser
7272
let isCrtMissing = false;
7373
let isMediaFoundationMissing = false;
7474
for (const dep of missingDeps) {
75-
if (dep.startsWith('api-ms-win-crt') || dep === 'vcruntime140.dll' || dep === 'msvcp140.dll')
75+
if (dep.startsWith('api-ms-win-crt') || dep === 'vcruntime140.dll' || dep === 'vcruntime140_1.dll' || dep === 'msvcp140.dll')
7676
isCrtMissing = true;
7777
else if (dep === 'mf.dll' || dep === 'mfplat.dll' || dep === 'msmpeg2vdec.dll' || dep === 'evr.dll' || dep === 'avrt.dll')
7878
isMediaFoundationMissing = true;

0 commit comments

Comments
 (0)