| 10661 | } |
| 10662 | |
| 10663 | static void uninstall_managed_agent_instructions(const char *label, const char *instructions_path, |
| 10664 | bool dry_run) { |
| 10665 | if (!dry_run && cbm_remove_managed_instructions(instructions_path) != CLI_OK) { |
| 10666 | record_agent_config_error(true, label, "instructions_uninstall", instructions_path); |
| 10667 | } |
| 10668 | printf(" instructions: removed managed context\n"); |
| 10669 | } |
| 10670 | |
| 10671 | static bool remove_cline_context_hooks(const char *cline_root, const char *binary_path, |
| 10672 | bool dry_run, bool uninstalling) { |
no test coverage detected