diff options
author | Vincent Ambo <vincent@spotify.com> | 2013-08-06T11·12+0200 |
---|---|---|
committer | Vincent Ambo <vincent@spotify.com> | 2013-08-06T11·12+0200 |
commit | 9ae4bc6a27291f7c9a8667878236c499d5eab28c (patch) | |
tree | 432df2d792df082b11110742fb9a3cf560807c97 /init-functions.el | |
parent | 262abd3eadc21fb58fc1e365a641697f2b85eaa1 (diff) |
Made custom-clone-git asynchronous
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 dfdfee08389a..1fdf64ed59a7 100644 --- a/init-functions.el +++ b/init-functions.el @@ -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. |