Преглед изворни кода

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))