MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / archive_specs

Function archive_specs

scripts/ci/verify-release-selection.py:68–82  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

66
67
68def archive_specs() -> dict[str, tuple[str, str]]:
69 specs: dict[str, tuple[str, str]] = {}
70 for target in TARGETS:
71 binary = "codebase-memory-mcp.exe" if target.startswith("windows-") else "codebase-memory-mcp"
72 suffix = ".zip" if target.startswith("windows-") else ".tar.gz"
73 specs[f"codebase-memory-mcp-{target}{suffix}"] = (target, binary)
74 if (
75 target.startswith(("darwin-", "windows-"))
76 or target.endswith("-portable")
77 ):
78 specs[f"codebase-memory-mcp-{target}.mcpb"] = (
79 target,
80 f"server/{binary}",
81 )
82 return specs
83
84
85ARCHIVES = archive_specs()

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected