From 29b3fe926ebf3a8fb1701ebd6fbf2ad14dc4dd6c Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Sat, 5 Jun 2021 13:04:05 +0200 Subject: [PATCH] ambrevar/storage: Ensure ~/.password-store is a directory pathname. --- .local/share/common-lisp/source/ambrevar/storage.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/share/common-lisp/source/ambrevar/storage.lisp b/.local/share/common-lisp/source/ambrevar/storage.lisp index d04fed08..cf7fa397 100644 --- a/.local/share/common-lisp/source/ambrevar/storage.lisp +++ b/.local/share/common-lisp/source/ambrevar/storage.lisp @@ -174,7 +174,7 @@ If DESTINATION ends with '.gpg', it gets GPG-encrypted." (lambda (entry) (if (or (not (rest entry)) (= 0 (rest entry))) - entry + (list (uiop:ensure-directory-pathname (first entry))) (let ((max-depth (rest entry)) (result '()) (root (uiop:ensure-directory-pathname (first entry))))