diff options
Diffstat (limited to 'init-functions.el')
-rw-r--r-- | init-functions.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init-functions.el b/init-functions.el index b461b2e6a720..033c525eb5ce 100644 --- a/init-functions.el +++ b/init-functions.el @@ -50,7 +50,7 @@ ;; if there isn't already a folder with that name (defun custom-clone-git (url foldername) "Clones a git repository to .emacs.d/foldername" - (let ((fullpath (concat "~/.emacs.d/clones/" foldername))) + (let ((fullpath (concat "~/.emacs.d/" foldername))) (unless (file-exists-p fullpath) (async-shell-command (concat "git clone " url " " fullpath))))) |