MCPcopy Create free account
hub / github.com/dmno-dev/bumpy / openBrowser

Function openBrowser

packages/bumpy/src/commands/ci-setup.ts:287–294  ·  view source on GitHub ↗
(url: string)

Source from the content-addressed store, hash-verified

285}
286
287function openBrowser(url: string): void {
288 try {
289 const cmd = process.platform === 'darwin' ? 'open' : process.platform === 'win32' ? 'start' : 'xdg-open';
290 tryRunArgs([cmd, url]);
291 } catch {
292 // Silent fail — user can open manually
293 }
294}

Callers 2

setupPatFunction · 0.85
setupAppFunction · 0.85

Calls 1

tryRunArgsFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…