We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb1513a commit 4982eddCopy full SHA for 4982edd
src/git_ops.rs
@@ -11,7 +11,9 @@ use walkdir::WalkDir;
11
// Check if a directory should be excluded
12
fn is_excluded_dir(entry: &walkdir::DirEntry, exclude_dirs: &[String]) -> bool {
13
let path = entry.path(); // Get the full path of the directory
14
- exclude_dirs.iter().any(|exclude| path.to_string_lossy().contains(exclude))
+ exclude_dirs
15
+ .iter()
16
+ .any(|exclude| path.to_string_lossy().contains(exclude))
17
}
18
19
// Send the path to the channel if it is a Git repository
0 commit comments