diff --git a/src/config.rs b/src/config.rs index a758404..88d6711 100644 --- a/src/config.rs +++ b/src/config.rs @@ -39,7 +39,10 @@ impl HuskConfig { } }, Err(e) => { - Err(HuskError::ConfigFileOpenError(e.to_string()).into()) + Err(HuskError::ConfigFileOpenError(format!( + "{} - {}", + path, + e.to_string())).into()) } } }