Overrides the source directory used when copying the repository. When set, this path is used instead of the auto-detected repository root.
(mut self, source: Option<PathBuf>)
| 221 | /// Overrides the source directory used when copying the repository. |
| 222 | /// When set, this path is used instead of the auto-detected repository root. |
| 223 | pub fn repo_copy_source(mut self, source: Option<PathBuf>) -> Self { |
| 224 | self.repo_copy_source = source; |
| 225 | self |
| 226 | } |
| 227 | |
| 228 | /// Sets a specific branch to clone from instead of the current working tree. |
| 229 | /// When set, the task copies only the committed state at the branch's HEAD. |
no outgoing calls