diff --git a/crates/core/config.rs b/crates/core/config.rs index 5426554da..d9c5970bb 100644 --- a/crates/core/config.rs +++ b/crates/core/config.rs @@ -28,7 +28,10 @@ pub fn args() -> Vec { let (args, errs) = match parse(&config_path) { Ok((args, errs)) => (args, errs), Err(err) => { - message!("{}", err); + message!( + "failed to read the file specified in RIPGREP_CONFIG_PATH: {}", + err + ); return vec![]; } };