branch: elpa/javelin
commit b08d4af6e4ab404c8a1031ff8cbfff49d5c8aec4
Merge: 902aff3f978 c33b6a2eeae
Author: Otávio Schwanck dos Santos <[email protected]>
Commit: GitHub <[email protected]>

    Merge pull request #6 from martini97/master
    
    fix: create parents on harpoon--create-directory
---
 harpoon.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/harpoon.el b/harpoon.el
index 98a4b33a2ed..c0e159e741a 100644
--- a/harpoon.el
+++ b/harpoon.el
@@ -133,7 +133,7 @@
 (defun harpoon--create-directory ()
   "Create harpoon cache dir if doesn't exist."
   (unless (f-directory? harpoon-cache-file)
-    (make-directory harpoon-cache-file)))
+    (make-directory harpoon-cache-file t)))
 
 (defun harpoon--file-name ()
   "File name for harpoon on current project."

Reply via email to