1
0
Fork 0
mirror of https://github.com/archtechx/todo-system.git synced 2025-12-12 17:14:03 +00:00

remove dbg statement

This commit is contained in:
Samuel Štancl 2023-11-24 19:33:55 +01:00
parent ea399a9c3b
commit ffd29a34ec

View file

@ -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() { for line in std::fs::read_to_string(gitignore).unwrap().lines() {
if line.trim() == "*" { if line.trim() == "*" {
if let Ok(realpath) = canonicalize(&base_dir) { if let Ok(realpath) = canonicalize(&base_dir) {
dbg!(&realpath);
excludes.push(realpath); excludes.push(realpath);
} }