Clean up shadow repository
(&self, os: &Os)
| 332 | |
| 333 | /// Clean up shadow repository |
| 334 | pub async fn cleanup(&self, os: &Os) -> Result<()> { |
| 335 | if self.shadow_repo_path.exists() { |
| 336 | os.fs.remove_dir_all(&self.shadow_repo_path).await?; |
| 337 | } |
| 338 | Ok(()) |
| 339 | } |
| 340 | |
| 341 | fn get_checkpoint(&self, tag: &str) -> Result<&Checkpoint> { |
| 342 | self.tag_index |
no test coverage detected