From 3f6ca83e2894ba36961ba1fc4ec32b9e48a544cf Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Wed, 8 Nov 2023 05:50:16 +0000 Subject: [PATCH] feat: Updated fluere-plugin/src/util.rs --- fluere-plugin/src/util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluere-plugin/src/util.rs b/fluere-plugin/src/util.rs index 051d373..028ab06 100644 --- a/fluere-plugin/src/util.rs +++ b/fluere-plugin/src/util.rs @@ -27,7 +27,7 @@ pub fn home_cache_path() -> Result { )) } }; - let path_cache = path_base.join("fluere"); + let path_cache = path_base?.join("fluere"); if !path_cache.exists() { fs::create_dir_all(path_cache.clone())?; }