Print Playwright version when failing to install deps
This commit is contained in:
parent
341862c045
commit
cd1fa11243
|
|
@ -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]);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue