diff options
-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. |