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:9485–9494  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9483}
9484
9485int cbm_install_handle_existing_indexes(const char *home, bool reset, bool dry_run) {
9486 bool delete_indexes = false;
9487 int prepare_result =
9488 cbm_install_prepare_existing_indexes(home, reset, dry_run, &delete_indexes);
9489 if (prepare_result == 1 && delete_indexes) {
9490 int removed = cbm_remove_indexes(home);
9491 printf("Removed %d index(es).\n\n", removed);
9492 }
9493 return prepare_result;
9494}
9495
9496/* ── Client selection (#1558) ──────────────────────────────────
9497 *

Callers 1

repro_issue607.cFile · 0.85

Calls 2

cbm_remove_indexesFunction · 0.85

Tested by

no test coverage detected