Sets the repository root path
(mut self, repo_root: PathBuf)
| 109 | |
| 110 | /// Sets the repository root path |
| 111 | pub fn repo_root(mut self, repo_root: PathBuf) -> Self { |
| 112 | self.repo_root = Some(repo_root); |
| 113 | self |
| 114 | } |
| 115 | |
| 116 | /// Sets the task name |
| 117 | pub fn name(mut self, name: String) -> Self { |
no outgoing calls