Skip to content

Commit

Permalink
I think I got it
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 1dd3503 commit 339cf86
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 @@ -184,7 +184,7 @@ fn should_index(entry: &walkdir::DirEntry) -> bool {
if entry
.metadata()
.map(|m| m.len() == 0)
.unwrap_or(false)
.unwrap_or(true)
{
println!("\t\tFile is empty");
return false;
Expand Down

0 comments on commit 339cf86

Please sign in to comment.