Print Playwright version when failing to install deps

This commit is contained in:
Yury Semikhatsky 2025-01-16 14:04:33 -08:00
parent 341862c045
commit cd1fa11243

View file

@ -95,7 +95,7 @@ export async function installDependenciesLinux(targets: Set<DependencyGroup>, dr
for (const target of targets) { for (const target of targets) {
const info = deps[platform]; const info = deps[platform];
if (!info) { if (!info) {
console.warn(`Cannot install dependencies for ${platform}!`); // eslint-disable-line no-console console.warn(`Cannot install dependencies for ${platform} with Playwright ${getPlaywrightVersion()}!`); // eslint-disable-line no-console
return; return;
} }
libraries.push(...info[target]); libraries.push(...info[target]);