Skip to content
Snippets Groups Projects
Unverified Commit 05eba838 authored by Mathieu Lirzin's avatar Mathieu Lirzin
Browse files

base: Create the parent directories of '%package-cachedir'.

* src/cuirass/base.scm (fetch-repository): Use 'mkdir-p' instead of 'mkdir'
for 'cachedirectory'.
parent 7248c003
No related branches found
No related tags found
No related merge requests found
......@@ -82,7 +82,7 @@ if required."
commit))
(let ((cachedir (%package-cachedir)))
(or (file-exists? cachedir) (mkdir cachedir))
(or (file-exists? cachedir) (mkdir-p cachedir))
(with-directory-excursion cachedir
(let ((name (assq-ref spec #:name))
(url (assq-ref spec #:url))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment