MCPcopy Create free account
hub / github.com/getsentry/XcodeBuildMCP / buildAppPathSuccess

Function buildAppPathSuccess

src/utils/app-query-results.ts:18–32  ·  view source on GitHub ↗
(
  appPath: string,
  request: AppPathRequest,
  target: BuildTarget,
  durationMs?: number,
)

Source from the content-addressed store, hash-verified

16}
17
18export function buildAppPathSuccess(
19 appPath: string,
20 request: AppPathRequest,
21 target: BuildTarget,
22 durationMs?: number,
23): AppPathDomainResult {
24 return {
25 kind: 'app-path',
26 didError: false,
27 error: null,
28 request,
29 summary: { status: 'SUCCEEDED', target, ...(durationMs !== undefined ? { durationMs } : {}) },
30 artifacts: { appPath },
31 };
32}
33
34export function buildAppPathFailure(
35 rawMessage: string,

Calls

no outgoing calls

Tested by

no test coverage detected