MCPcopy Create free account
hub / github.com/Noumena-Network/code / resolveCompiledBinaryPath

Function resolveCompiledBinaryPath

src/testing/wrapperPtyHarness.ts:270–278  ·  view source on GitHub ↗
(
  repoRoot = WRAPPER_HARNESS_REPO_ROOT,
)

Source from the content-addressed store, hash-verified

268}
269
270export function resolveCompiledBinaryPath(
271 repoRoot = WRAPPER_HARNESS_REPO_ROOT,
272): string | null {
273 const matches = findCompiledBinaryCandidates(repoRoot)
274 if (matches.length === 0) {
275 return null
276 }
277 return matches[0]!
278}
279
280export function requireCompiledBinaryPath(): string {
281 let compiledBinaryPath = resolveCompiledBinaryPath()

Calls 1

Tested by

no test coverage detected