diff options
Diffstat (limited to 'src/config/default.rs')
-rw-r--r-- | src/config/default.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/default.rs b/src/config/default.rs index 8eedb18..59063f5 100644 --- a/src/config/default.rs +++ b/src/config/default.rs @@ -34,7 +34,7 @@ fn get_config_path(name: &'static str) -> Result<PathBuf> { pub(super) fn create_path(path: PathBuf) -> Result<PathBuf> { if !path.exists() { if let Some(parent) = path.parent() { - std::fs::create_dir_all(&parent) + std::fs::create_dir_all(parent) .with_context(|| format!("Failed to create the '{}' directory", path.display()))? } } |