(ctx: &InstallContext)
| 329 | } |
| 330 | |
| 331 | fn codex_update_project_path(ctx: &InstallContext) -> Option<PathBuf> { |
| 332 | ctx.project_root |
| 333 | .clone() |
| 334 | .or_else(|| std::env::current_dir().ok()) |
| 335 | } |
| 336 | |
| 337 | fn install_codex_plugin(home: &Path, tracedecay_bin: &str) -> Result<()> { |
| 338 | let cached_dirs = codex_plugin_cached_install_dirs(home); |
no outgoing calls
no test coverage detected