Переглянути джерело

Make timestamp directory even if the parent does not exist

* lisp/org-publish.el (org-publish-initialize-cache): Make
timestamp directory, the entire path to it.
Carsten Dominik 15 роки тому
батько
коміт
6c381070f9
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      lisp/org-publish.el

+ 1 - 1
lisp/org-publish.el

@@ -931,7 +931,7 @@ and return it."
 	   " in `org-publish-initialize-cache'"))
 
   (unless (file-exists-p org-publish-timestamp-directory)
-    (make-directory org-publish-timestamp-directory))
+    (make-directory org-publish-timestamp-directory t))
   (if (not (file-directory-p org-publish-timestamp-directory))
       (error "Org publish timestamp: %s is not a directory"
 	     org-publish-timestamp-directory))