0
0
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:
Adrian Wannenmacher 2023-09-24 07:51:45 +02:00
parent 4cb1459f71
commit bb26f6be90
Signed by: tfld
GPG Key ID: 19D986ECB1E492D5

View File

@ -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)?;
}
}