Skip to content

Commit

Permalink
Add el-get-git-install-url for the installer, and switch default from…
Browse files Browse the repository at this point in the history
… git:// to http://
  • Loading branch information
dimitri committed Mar 16, 2011
1 parent 512b0aa commit 39369f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion el-get-install.el
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
(pdir (file-name-as-directory (concat el-get-root package)))
(git (or (executable-find "git")
(error "Unable to find `git'")))
(url "git://github.com/dimitri/el-get.git")
(url (if (bound-and-true-p el-get-git-install-url)
el-get-git-install-url
"http://github.com/dimitri/el-get.git")
(default-directory el-get-root)
(process-connection-type nil) ; pipe, no pty (--no-progress)

Expand Down

0 comments on commit 39369f3

Please sign in to comment.