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

Function build_update_url

src/cli/cli.c:13134–13148  ·  view source on GitHub ↗

Update-only helpers. The release build hands updating to the install * script, so none of this ships: no release URL construction, no archive * download, no extract-and-exec. Retained for the C suite, which still * covers the flow through the activation test seam. */ Build the download URL for the update command. */

Source from the content-addressed store, hash-verified

13132 * covers the flow through the activation test seam. */
13133/* Build the download URL for the update command. */
13134static void build_update_url(char *url, int url_sz, const char *os, const char *arch,
13135 const char *ext) {
13136 char base_url_buf[CLI_BUF_512];
13137 const char *base_url =
13138 cbm_safe_getenv("CBM_DOWNLOAD_URL", base_url_buf, sizeof(base_url_buf), NULL);
13139 if (!base_url || !base_url[0]) {
13140 base_url = "https://github.com/DeusData/codebase-memory-mcp/releases/latest/download";
13141 }
13142 /* Linux ships a fully-static "-portable" build; the standard linux binary
13143 * dynamically links glibc 2.38+ and fails on older distros. macOS/Windows
13144 * have no such variant. Keep in sync with install.sh / install.js / pypi
13145 * _cli.py. */
13146 const char *portable = (strcmp(os, "linux") == 0) ? "-portable" : "";
13147 snprintf(url, url_sz, "%s/codebase-memory-mcp-%s-%s%s.%s", base_url, os, arch, portable, ext);
13148}
13149
13150/* Confirm index deletion before network I/O, but defer the deletion itself to
13151 * the final guarded activation after the verified binary is ready. Returns 0

Callers 1

cbm_cmd_updateFunction · 0.85

Calls 1

cbm_safe_getenvFunction · 0.85

Tested by

no test coverage detected