From 247e0f9ed0cbfbef0f0618a3cea9f309d792eba2 Mon Sep 17 00:00:00 2001 From: Philippe Llerena Date: Tue, 20 Aug 2024 14:18:21 +0200 Subject: [PATCH] Update crates/spfs/src/runtime/storage.rs Co-authored-by: Ryan Bottriell Signed-off-by: Philippe Llerena --- crates/spfs/src/runtime/storage.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/spfs/src/runtime/storage.rs b/crates/spfs/src/runtime/storage.rs index 9c7a9b34d..ff41e62b5 100644 --- a/crates/spfs/src/runtime/storage.rs +++ b/crates/spfs/src/runtime/storage.rs @@ -408,8 +408,8 @@ pub struct Config { impl Default for Config { fn default() -> Self { - // Default RUNTIME_DIR - Self::from_root(temp_dir().join("spfs-runtime")) + let default_runtime_dir = temp_dir().join("spfs-runtime"); + Self::from_root(default_runtime_dir) } }