MCPcopy Index your code
hub / github.com/dmno-dev/bumpy / tryRunArgs

Function tryRunArgs

packages/bumpy/src/utils/shell.ts:167–173  ·  view source on GitHub ↗
(args: string[], opts?: { cwd?: string })

Source from the content-addressed store, hash-verified

165
166/** tryRun equivalent for argument arrays */
167export function tryRunArgs(args: string[], opts?: { cwd?: string }): string | null {
168 try {
169 return runArgs(args, opts);
170 } catch {
171 return null;
172 }
173}

Callers 15

generateCommandFunction · 0.90
storeSecretFunction · 0.90
detectRepoFunction · 0.90
openBrowserFunction · 0.90
versionCommandFunction · 0.90
ensureGitIdentityFunction · 0.90
resolveTargetPrNumberFunction · 0.90
autoPublishFunction · 0.90
createVersionPrFunction · 0.90
detectChannelMovesFunction · 0.90

Calls 1

runArgsFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…