Returns whether to copy paths recursively or not. The default value is false. @return Whether to copy paths recursively.
| 204 | // @return Whether to copy paths recursively. |
| 205 | // |
| 206 | bool PipelinePlugin::CopyPathsRecursively() const |
| 207 | { |
| 208 | // This is stored in pipeline options. |
| 209 | bool recursively = Plugin::CopyPathsRecursively(); |
| 210 | const Pipeline* pPipeline = GetPipeline(); |
| 211 | if (pPipeline != nullptr) { |
| 212 | PipelineOptions options; |
| 213 | pPipeline->ModifyOptions(options); |
| 214 | recursively = options.GetCopyPathsRecursively(); |
| 215 | } |
| 216 | return recursively; |
| 217 | } |
| 218 | |
| 219 | // |
| 220 | // Returns the action to perform on the path or paths when using this plugin. |
nothing calls this directly
no test coverage detected