mirror of
https://github.com/TeFiLeDo/tree-owners.git
synced 2024-11-12 22:36:17 +01:00
remove recursive context
This commit is contained in:
parent
4cb1459f71
commit
bb26f6be90
@ -69,7 +69,7 @@ fn fs_entry(entry: &Path, summary: &mut Ids) -> Result<()> {
|
||||
let children = read_dir(entry).context(format!("failed to read dir {}", display))?;
|
||||
for e in children {
|
||||
let e = e.context(format!("invalid child for {}", display))?;
|
||||
fs_entry(&e.path(), summary).context(format!("failed to read child of {}", display))?;
|
||||
fs_entry(&e.path(), summary)?;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user