little installer output bug fixeD

This commit is contained in:
Sameer Rahmani 2013-06-10 19:45:11 +04:30
parent e9bc949943
commit eb9e9bca54
2 changed files with 16 additions and 7 deletions

View File

@ -4,9 +4,18 @@
(setq developer-email "--EMAIL--")
(setq kuso-workspace "--WORKSPACE--")
(setq el-get-dir "--REPO--/el-get/")
(url-retrieve
"https://raw.github.com/dimitri/el-get/master/el-get-install.el"
(lambda (s)
(goto-char (point-max))
(eval-print-last-sexp)))
(setq el-get-dir "--REPO--/")
(setq el-get-git-install-url "http://github.com/KusoIDE/el-get.git")
(add-to-list 'load-path "--REPO--/el-get/")
(unless (require 'el-get nil t)
(with-current-buffer
(url-retrieve-synchronously
"https://raw.github.com/KusoIDE/el-get/master/el-get-install.el")
(goto-char (point-max))
(eval-print-last-sexp)
)
)
(el-get 'sync)

View File

@ -98,4 +98,4 @@ sed "s,--REPO--,$repo,mg" -i $dotemacs
info "Pre-Installation finished."
echo "\nNow you must run the Kuso IDE to download requirements and configuration. Have Fun ;)"
echo -e "\nNow you must run the Kuso IDE to download requirements and configuration. Have Fun ;)"