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

Source from the content-addressed store, hash-verified

9104}
9105
9106int cbm_install_handle_existing_indexes(const char *home, bool reset, bool dry_run) {
9107 bool delete_indexes = false;
9108 int prepare_result =
9109 cbm_install_prepare_existing_indexes(home, reset, dry_run, &delete_indexes);
9110 if (prepare_result == 1 && delete_indexes) {
9111 int removed = cbm_remove_indexes(home);
9112 printf("Removed %d index(es).\n\n", removed);
9113 }
9114 return prepare_result;
9115}
9116
9117/* ── Subcommand: install ──────────────────────────────────────── */
9118

Callers 1

repro_issue607.cFile · 0.85

Calls 2

cbm_remove_indexesFunction · 0.85

Tested by

no test coverage detected