diff options
Diffstat (limited to 'cli/http_cache.rs')
-rw-r--r-- | cli/http_cache.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/http_cache.rs b/cli/http_cache.rs index eb6aa3f0f..f70ccc715 100644 --- a/cli/http_cache.rs +++ b/cli/http_cache.rs @@ -123,7 +123,7 @@ impl HttpCache { if path.is_dir() { return Ok(()); } - fs::create_dir_all(&path).map_err(|e| { + fs::create_dir_all(path).map_err(|e| { io::Error::new( e.kind(), format!( |