| 5008 | } |
| 5009 | |
| 5010 | static bool cbm_install_augment_coverage_script(const char *binary_path, const char *script_path) { |
| 5011 | char script[CLI_BUF_8K]; |
| 5012 | return ensure_parent_dir(script_path) == CLI_OK && |
| 5013 | cbm_build_augment_coverage_script(binary_path, script, sizeof(script)) == CLI_OK && |
| 5014 | cbm_write_owned_hook_script(script_path, script); |
| 5015 | } |
| 5016 | |
| 5017 | static const char *const cmm_cline_context_events[] = {"TaskStart", "TaskResume", |
| 5018 | "UserPromptSubmit", "PreCompact"}; |
no test coverage detected