Use http URL for "brew update".

This allows users behind firewalls to pull down updates to Homebrew itself.
Fixes Homebrew/homebrew#1086
This commit is contained in:
Adam Vandenberg 2010-07-01 09:22:55 -07:00
parent aac072c47a
commit 98f550e946

View File

@ -1,5 +1,5 @@
class RefreshBrew
RESPOSITORY_URL = 'git://github.com/mxcl/homebrew.git'
RESPOSITORY_URL = 'http://github.com/mxcl/homebrew.git'
INIT_COMMAND = "git init"
CHECKOUT_COMMAND = 'git checkout -q master'
UPDATE_COMMAND = "git pull #{RESPOSITORY_URL} master"