Skip to content

Commit

Permalink
remove dbg statement
Browse files Browse the repository at this point in the history
  • Loading branch information
stancl committed Nov 24, 2023
1 parent ea399a9 commit ffd29a3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ pub fn add_excludes_from_gitignore(base_dir: &PathBuf, excludes: &mut Vec<PathBu
for line in std::fs::read_to_string(gitignore).unwrap().lines() {
if line.trim() == "*" {
if let Ok(realpath) = canonicalize(&base_dir) {
dbg!(&realpath);
excludes.push(realpath);
}

Expand Down

0 comments on commit ffd29a3

Please sign in to comment.