From df8a1f5606f55928efd0878e1f3bc8d12e98efb1 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Thu, 3 Apr 2025 22:01:57 +0200 Subject: [PATCH] Fix RecordingStore::create Bug introduced in #225 --- bin/src/qmdl_store.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/src/qmdl_store.rs b/bin/src/qmdl_store.rs index f6741f6..e7f8970 100644 --- a/bin/src/qmdl_store.rs +++ b/bin/src/qmdl_store.rs @@ -116,13 +116,12 @@ impl RecordingStore { where P: AsRef, { - let manifest_path = path.as_ref().join("manifest.toml"); fs::create_dir_all(&path) .await .map_err(RecordingStoreError::OpenDirError)?; let mut store = RecordingStore { - path: manifest_path, + path: path.as_ref().to_owned(), manifest: Manifest { entries: Vec::new() },