(&self, repo_root: &Path)
| 702 | } |
| 703 | |
| 704 | fn install(&self, repo_root: &Path) -> AgentResult<usize> { |
| 705 | let settings_path = Self::settings_path(repo_root); |
| 706 | Self::install_to(&settings_path, false) |
| 707 | } |
| 708 | |
| 709 | fn uninstall(&self, repo_root: &Path) -> AgentResult<()> { |
| 710 | let settings_path = Self::settings_path(repo_root); |
no outgoing calls