Skip to content

Commit

Permalink
github changed its raw url scheme, change the documentation to reflec…
Browse files Browse the repository at this point in the history
…t that
  • Loading branch information
dimitri committed Sep 9, 2011
1 parent 6ddc66a commit 53ff522
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Here's the 'lazy installer':
;; So the idea is that you copy/paste this code into your *scratch* buffer,
;; hit C-j, and you have a working el-get.
(url-retrieve
"https://github.com/dimitri/el-get/raw/master/el-get-install.el"
"https://raw.github.com/dimitri/el-get/master/el-get-install.el"
(lambda (s)
(end-of-buffer)
(eval-print-last-sexp)))
Expand All @@ -64,7 +64,7 @@ avoid this with the following snippet instead:
(unless (require 'el-get nil t)
(url-retrieve
"https://github.com/dimitri/el-get/raw/master/el-get-install.el"
"https://raw.github.com/dimitri/el-get/master/el-get-install.el"
(lambda (s)
(end-of-buffer)
(eval-print-last-sexp))))
Expand All @@ -85,7 +85,7 @@ how to:
(unless (require 'el-get nil t)
(url-retrieve
"https://github.com/dimitri/el-get/raw/master/el-get-install.el"
"https://raw.github.com/dimitri/el-get/master/el-get-install.el"
(lambda (s)
(end-of-buffer)
(eval-print-last-sexp))))
Expand Down

0 comments on commit 53ff522

Please sign in to comment.