| 4361 | } |
| 4362 | |
| 4363 | static int cbm_upsert_gitlab_session_hook(const char *hooks_path, const char *binary_path) { |
| 4364 | char command[CLI_BUF_8K]; |
| 4365 | if (cbm_build_augment_command(binary_path, command, sizeof(command)) != CLI_OK) { |
| 4366 | return CLI_ERR; |
| 4367 | } |
| 4368 | return upsert_hooks_json((hooks_upsert_args_t){ |
| 4369 | .settings_path = hooks_path, |
| 4370 | .hook_event = "SessionStart", |
| 4371 | .command_str = command, |
| 4372 | .timeout_value = CMM_HOOK_TIMEOUT_SEC, |
| 4373 | .match_command_exact = command, |
| 4374 | }); |
| 4375 | } |
| 4376 | |
| 4377 | static int cbm_remove_gitlab_session_hook(const char *hooks_path, const char *binary_path) { |
| 4378 | char command[CLI_BUF_8K]; |
no test coverage detected