Made custom-clone-git asynchronous

This commit is contained in:
Vincent Ambo 2013-08-06 13:12:24 +02:00
parent 262abd3ead
commit 9ae4bc6a27

View file

@ -41,7 +41,7 @@
"Clones a git repository to .emacs.d/foldername"
(let ((fullpath (concat "~/.emacs.d/" foldername)))
(unless (file-exists-p fullpath)
(shell-command (concat "git clone " url " " fullpath))))
(async-shell-command (concat "git clone " url " " fullpath))))
)
;; These come from magnars, he's got some awesome things.