Builder: set the force flag.
(mut self, force: bool)
| 127 | |
| 128 | /// Builder: set the force flag. |
| 129 | pub fn with_force(mut self, force: bool) -> Self { |
| 130 | self.force = force; |
| 131 | self |
| 132 | } |
| 133 | |
| 134 | /// Normalize a path relative to the repository root. |
| 135 | fn normalize_path(&self, repo_root: &Path, path: &str) -> CliResult<String> { |
no outgoing calls