From eb9e9bca54e70ec30bd6446126a49ce2854762d8 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Mon, 10 Jun 2013 19:45:11 +0430 Subject: [PATCH] little installer output bug fixeD --- conf/dotkuso | 21 +++++++++++++++------ install.sh | 2 +- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/conf/dotkuso b/conf/dotkuso index 4984750..680c6bb 100644 --- a/conf/dotkuso +++ b/conf/dotkuso @@ -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) diff --git a/install.sh b/install.sh index b6bd847..eb9aa95 100755 --- a/install.sh +++ b/install.sh @@ -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 ;)"