| 5546 | } |
| 5547 | |
| 5548 | static int cbm_remove_gemini_coverage_hook(const char *settings_path, const char *binary_path) { |
| 5549 | char command[CLI_BUF_8K]; |
| 5550 | if (cbm_build_augment_dialect_command(binary_path, "gemini", command, sizeof(command)) != |
| 5551 | CLI_OK) { |
| 5552 | return CLI_ERR; |
| 5553 | } |
| 5554 | return remove_hooks_json((hooks_remove_args_t){ |
| 5555 | .settings_path = settings_path, |
| 5556 | .hook_event = "AfterTool", |
| 5557 | .matcher_str = "read_file", |
| 5558 | .match_command_exact = command, |
| 5559 | }); |
| 5560 | } |
| 5561 | #endif |
| 5562 | |
| 5563 | /* Gemini CLI SessionStart reminder. settings.json uses the same |
no test coverage detected