aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-01 09:22:55 -0700
committerAdam Vandenberg2010-07-01 09:22:55 -0700
commiteada5e41a6216c8b46830d403bd82c814e43cf92 (patch)
tree14635b0bbc5054de7dfe5a593811153c97a3fddd /Library/Homebrew
parent8e35fce2862bd76346b9d7ad2ab2e8ced93d95e6 (diff)
downloadhomebrew-eada5e41a6216c8b46830d403bd82c814e43cf92.tar.bz2
Use http URL for "brew update".
This allows users behind firewalls to pull down updates to Homebrew itself. Fixes #1086
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/update.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/update.rb b/Library/Homebrew/update.rb
index 6b2630ce0..cac172880 100644
--- a/Library/Homebrew/update.rb
+++ b/Library/Homebrew/update.rb
@@ -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"