Resolve the exact shell-quoted command form shipped immediately before the * explicit Windows cmd.exe wrapper. It remains an ownership identity only. */
| 2705 | /* Resolve the exact shell-quoted command form shipped immediately before the |
| 2706 | * explicit Windows cmd.exe wrapper. It remains an ownership identity only. */ |
| 2707 | static int cbm_resolve_previous_hook_command(const char *script_name, char *out, size_t out_sz) { |
| 2708 | if (!cbm_hook_script_name_safe(script_name) || !out || out_sz == 0U) { |
| 2709 | return CLI_ERR; |
| 2710 | } |
| 2711 | char env_buf[CLI_BUF_1K]; |
| 2712 | const char *env = cbm_safe_getenv("CLAUDE_CONFIG_DIR", env_buf, sizeof(env_buf), NULL); |
| 2713 | if (env && env[0]) { |
| 2714 | char path[CLI_BUF_1K]; |
| 2715 | int written = snprintf(path, sizeof(path), "%s/hooks/%s", env, script_name); |
| 2716 | return written > 0 && (size_t)written < sizeof(path) |
| 2717 | ? cbm_shell_quote_word(path, out, out_sz) |
| 2718 | : CLI_ERR; |
| 2719 | } |
| 2720 | int written = snprintf(out, out_sz, "\"$HOME/.claude/hooks/%s\"", script_name); |
| 2721 | return written > 0 && (size_t)written < out_sz ? CLI_OK : CLI_ERR; |
| 2722 | } |
| 2723 | |
| 2724 | /* Resolve only the exact command form shipped before hook paths were shell |
| 2725 | * quoted. This is an ownership identity for upgrade/uninstall, never a command |
no test coverage detected