From 079991b9e0fb8196b825c0ab42b438ab438cfca0 Mon Sep 17 00:00:00 2001 From: norohind <60548839+norohind@users.noreply.github.com> Date: Tue, 7 Nov 2023 22:30:50 +0300 Subject: [PATCH] disable ignore mechanism --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 6fd1688..bd90b6f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -175,7 +175,8 @@ fn main() { log::error!("Ignore file ({}) is not a file", ignore_file); process::exit(-1); } - analyse::update_ignore(&db_path, &ignore_path); + // analyse::update_ignore(&db_path, &ignore_path); // Ignore is done on postgres's + // side } else { analyse::analyse_files(&db_path, &music_paths, dry_run, keep_old, max_num_files, max_threads); }