From 238590aa9fdfe2aac04bb96abad2f2d2feb3101a Mon Sep 17 00:00:00 2001 From: Aaron O'Mullan Date: Thu, 17 Nov 2022 22:59:10 -0300 Subject: chore: use Rust 1.65.0 (#16688) --- cli/cache/disk_cache.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/cache') diff --git a/cli/cache/disk_cache.rs b/cli/cache/disk_cache.rs index 5a2f11e3c..81379ac94 100644 --- a/cli/cache/disk_cache.rs +++ b/cli/cache/disk_cache.rs @@ -40,7 +40,7 @@ impl DiskCache { 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!( "Could not create TypeScript compiler cache location: {:?}\nCheck the permission of the directory.", path -- cgit v1.2.3