| 4805 | } |
| 4806 | |
| 4807 | static bool cbm_install_augment_session_script(const char *binary_path, const char *script_path) { |
| 4808 | char script[CLI_BUF_8K]; |
| 4809 | return ensure_parent_dir(script_path) == CLI_OK && |
| 4810 | cbm_build_augment_session_script(binary_path, script, sizeof(script)) == CLI_OK && |
| 4811 | cbm_write_owned_hook_script(script_path, script); |
| 4812 | } |
| 4813 | |
| 4814 | static int cbm_build_augment_coverage_script(const char *binary_path, char *script, |
| 4815 | size_t script_size) { |
no test coverage detected