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

Source from the content-addressed store, hash-verified

9060}
9061
9062int cbm_install_handle_existing_indexes(const char *home, bool reset, bool dry_run) {
9063 bool delete_indexes = false;
9064 int prepare_result =
9065 cbm_install_prepare_existing_indexes(home, reset, dry_run, &delete_indexes);
9066 if (prepare_result == 1 && delete_indexes) {
9067 int removed = cbm_remove_indexes(home);
9068 printf("Removed %d index(es).\n\n", removed);
9069 }
9070 return prepare_result;
9071}
9072
9073/* ── Subcommand: install ──────────────────────────────────────── */
9074

Callers 1

repro_issue607.cFile · 0.85

Calls 2

cbm_remove_indexesFunction · 0.85

Tested by

no test coverage detected