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

Function cbm_install_handle_existing_indexes

src/cli/cli.c:9258–9267  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9256}
9257
9258int cbm_install_handle_existing_indexes(const char *home, bool reset, bool dry_run) {
9259 bool delete_indexes = false;
9260 int prepare_result =
9261 cbm_install_prepare_existing_indexes(home, reset, dry_run, &delete_indexes);
9262 if (prepare_result == 1 && delete_indexes) {
9263 int removed = cbm_remove_indexes(home);
9264 printf("Removed %d index(es).\n\n", removed);
9265 }
9266 return prepare_result;
9267}
9268
9269/* ── Client selection (#1558) ──────────────────────────────────
9270 *

Callers 1

repro_issue607.cFile · 0.85

Calls 2

cbm_remove_indexesFunction · 0.85

Tested by

no test coverage detected