(&self, repo_root: &Path)
| 707 | } |
| 708 | |
| 709 | fn uninstall(&self, repo_root: &Path) -> AgentResult<()> { |
| 710 | let settings_path = Self::settings_path(repo_root); |
| 711 | Self::uninstall_from(&settings_path) |
| 712 | } |
| 713 | |
| 714 | fn is_installed(&self, repo_root: &Path) -> bool { |
| 715 | let settings_path = Self::settings_path(repo_root); |
no outgoing calls