GNU bug report logs -
#31755
[PATCH 00/19] Use (guix store database) instead of 'guix-register'
Previous Next
Reported by: Ludovic Courtès <ludo <at> gnu.org>
Date: Fri, 8 Jun 2018 09:32:02 UTC
Severity: normal
Tags: patch
Done: ludo <at> gnu.org (Ludovic Courtès)
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
* guix/store/database.scm (register-path): Call 'mkdir-p'.
---
guix/store/database.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/guix/store/database.scm b/guix/store/database.scm
index 0f6d2e2c0..1400d0d1c 100644
--- a/guix/store/database.scm
+++ b/guix/store/database.scm
@@ -24,6 +24,7 @@
#:use-module (guix store deduplication)
#:use-module (guix base16)
#:use-module (guix build syscalls)
+ #:use-module ((guix build utils) #:select (mkdir-p))
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-11)
#:use-module (srfi srfi-19)
@@ -268,6 +269,7 @@ be used internally by the daemon's build hook."
(let-values (((hash nar-size)
(nar-sha256 real-path)))
(reset-timestamps real-path)
+ (mkdir-p db-dir)
(sqlite-register
#:db-file (string-append db-dir "/db.sqlite")
#:schema schema
--
2.17.1
This bug report was last modified 6 years and 347 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.