MCPcopy Create free account
hub / github.com/heygen-com/hyperframes / isSharedLibLaunchError

Function isSharedLibLaunchError

packages/cli/src/browser/linuxDeps.ts:315–321  ·  view source on GitHub ↗
(message: string)

Source from the content-addressed store, hash-verified

313 * dynamic-linker text and Puppeteer's wrapper.
314 */
315export function isSharedLibLaunchError(message: string): boolean {
316 return (
317 /cannot open shared object file/i.test(message) ||
318 /error while loading shared libraries/i.test(message) ||
319 /lib[\w.+-]*\.so[\w.]*: cannot open/i.test(message)
320 );
321}
322
323/**
324 * Turn a cryptic Chrome launch failure into actionable, per-distro guidance.

Callers 2

linuxDeps.test.tsFile · 0.85
chromeLaunchRemediationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected