(home: &Path)
| 1029 | } |
| 1030 | |
| 1031 | fn remove_codex_marketplace_entry(home: &Path) -> Result<()> { |
| 1032 | let marketplace_path = codex_personal_marketplace_path(home); |
| 1033 | remove_codex_marketplace_entry_at(&marketplace_path, "personal") |
| 1034 | } |
| 1035 | |
| 1036 | fn remove_codex_marketplace_entry_at(marketplace_path: &Path, label: &str) -> Result<()> { |
| 1037 | if !marketplace_path.exists() { |
no test coverage detected