Share the parent dir for `llm-db-path` with POLA wrapper
HEAD mainShare the parent directory for `llm-db-path` with the POLA wrapper,
rather than just the file to ensure that the permissions are set up
correctly and prevent SQLite from raising an error.
1 files changed, 1 insertions, 1 deletions
diff --git a/genenetwork/services/genenetwork.scm b/genenetwork/services/genenetwork.scm
index 08197b5..9ba6213 100644
--- a/genenetwork/services/genenetwork.scm
+++ b/genenetwork/services/genenetwork.scm
@@ -553,7 +553,7 @@ object."
(source xapian-db)
(target source))
(file-system-mapping
- (source llm-db-path)
+ (source (dirname llm-db-path))
(target source)
(writable? #t))
(file-system-mapping
|