mirror of
https://github.com/nushell/nushell.git
synced 2024-11-15 21:14:40 +01:00
drop redundant iter -> vec -> iter
This commit is contained in:
parent
cc8a470668
commit
b3b51a2ed6
@ -124,18 +124,13 @@ impl Command for Cp {
|
||||
let sources = sources.paths_applying_with(|(source_file, depth_level)| {
|
||||
let mut dest = destination.clone();
|
||||
let path = canonicalize_with(&source_file, &path)?;
|
||||
|
||||
let comps: Vec<_> = path
|
||||
let components = path
|
||||
.components()
|
||||
.map(|fragment| fragment.as_os_str())
|
||||
.rev()
|
||||
.take(1 + depth_level)
|
||||
.collect();
|
||||
|
||||
for fragment in comps.into_iter().rev() {
|
||||
dest.push(fragment);
|
||||
}
|
||||
.take(1 + depth_level);
|
||||
|
||||
components.for_each(|fragment| dest.push(fragment));
|
||||
Ok((PathBuf::from(&source_file), dest))
|
||||
})?;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user