Skip to content

Commit

Permalink
ew
Browse files Browse the repository at this point in the history
Signed-off-by: Tarek <[email protected]>
  • Loading branch information
tareknaser committed Aug 6, 2024
1 parent b3f04cf commit 242e34c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs-index/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ pub(crate) fn discover_paths<P: AsRef<Path>>(

// Print files in the root directory
for entry in WalkDir::new(&root_path) {
let entry = entry?;
let entry = entry.unwrap();
log::trace!("WalkDir Entry: {:?}", entry.path());
}

Expand Down

0 comments on commit 242e34c

Please sign in to comment.