We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 52e9c74 + c6d0439 commit 64b4174Copy full SHA for 64b4174
packages/plugin-node/scripts/postinstall.js
@@ -55,10 +55,10 @@ if (!distro || !supportedDistros.some((name) => distro.includes(name))) {
55
}
56
57
try {
58
- execSync("npx playwright install-deps && npx playwright install", {
+ execSync("npx playwright install", {
59
stdio: "inherit"
60
});
61
} catch (err) {
62
- console.error("Failed to install Playwright dependencies:", err.message);
+ console.error("Failed to install Playwright you may need to install playwright deps with 'sudo npx playwright install-deps'. Error: ", err.message);
63
process.exit(1);
64
-}
+}
0 commit comments