(&self, path: &WorkspacePath)
| 47 | } |
| 48 | |
| 49 | fn local_path_for_read(&self, path: &WorkspacePath) -> Result<PathBuf> { |
| 50 | a3s_common::tools::resolve_path(&self.root, path.as_str()).map_err(|e| anyhow!("{}", e)) |
| 51 | } |
| 52 | |
| 53 | fn local_path_for_write(&self, path: &WorkspacePath) -> Result<PathBuf> { |
| 54 | let target = if path.is_root() { |