From 327d409fdedd84ec2df1ad65a1070eb5ff24563e Mon Sep 17 00:00:00 2001 From: Tony Date: Mon, 1 Jul 2024 07:53:26 +0800 Subject: [PATCH] dirs_next -> dirs --- plugins/updater/src/updater.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/updater/src/updater.rs b/plugins/updater/src/updater.rs index 0dd9866b5..d8cc48a31 100644 --- a/plugins/updater/src/updater.rs +++ b/plugins/updater/src/updater.rs @@ -733,7 +733,7 @@ impl Update { let tmp_dir_locations = vec![ Box::new(|| Some(std::env::temp_dir())) as Box Option>, - Box::new(dirs_next::cache_dir), + Box::new(dirs::cache_dir), Box::new(|| Some(self.extract_path.parent().unwrap().to_path_buf())), ];