(&self, repo_root: &Path)
| 329 | } |
| 330 | |
| 331 | fn uninstall(&self, repo_root: &Path) -> AgentResult<()> { |
| 332 | uninstall_hooks_at(&Self::local_hooks_path(repo_root)) |
| 333 | } |
| 334 | |
| 335 | fn is_installed(&self, repo_root: &Path) -> bool { |
| 336 | self.is_installed_at(&Self::local_hooks_path(repo_root)) || self.is_installed_global() |