We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1a0276 commit 3d10df0Copy full SHA for 3d10df0
dsc_lib/src/configure/mod.rs
@@ -530,7 +530,7 @@ impl Configurator {
530
pub fn invoke_export(&mut self) -> Result<ConfigurationExportResult, DscError> {
531
let mut result = ConfigurationExportResult::new();
532
let mut conf = config_doc::Configuration::new();
533
- conf.metadata = self.config.metadata.clone();
+ conf.metadata.clone_from(&self.config.metadata);
534
535
let mut progress = ProgressBar::new(self.config.resources.len() as u64, self.progress_format)?;
536
let resources = self.config.resources.clone();
0 commit comments