From f9c4e8d399de3f5d2cd2db050744279917087915 Mon Sep 17 00:00:00 2001 From: psinghal20 Date: Tue, 2 Oct 2018 03:06:44 +0530 Subject: [PATCH] refactor: loosen strict handling of missing --ignore-file --- src/walk.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/walk.rs b/src/walk.rs index 29672e7..565edcf 100644 --- a/src/walk.rs +++ b/src/walk.rs @@ -89,7 +89,7 @@ pub fn scan(path_vec: &[PathBuf], pattern: Arc, config: Arc) { match err { ignore::Error::Partial(_) => (), _ => { - print_error_and_exit(&format!( + print_error(&format!( "Error while parsing custom ignore file '{}': {}.", ignore_file.to_string_lossy(), err.description()