aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Howell2012-03-09 11:57:53 +0000
committerMax Howell2012-03-09 12:10:49 +0000
commit2cb0bd2caef31b5f7967478d21f8b6928b9616c6 (patch)
tree5aba276724d88b65766883e0885cfd095af0de32
parenta721e736c595e276d215fd35a2e056010765d081 (diff)
downloadbrew-2cb0bd2caef31b5f7967478d21f8b6928b9616c6.tar.bz2
Github URLS now are https
-rw-r--r--install_homebrew.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/install_homebrew.rb b/install_homebrew.rb
index 28a8fa812..cddc44a32 100644
--- a/install_homebrew.rb
+++ b/install_homebrew.rb
@@ -1,7 +1,7 @@
#!/usr/bin/ruby
#
# This script installs to /usr/local only. To install elsewhere you can just
-# untar http://github.com/mxcl/homebrew/tarball/master anywhere you like.
+# untar https://github.com/mxcl/homebrew/tarball/master anywhere you like.
#
#
# 30th March 2010:
@@ -126,7 +126,7 @@ Dir.chdir "/usr/local" do
ohai "Downloading and Installing Homebrew..."
# -m to stop tar erroring out if it can't modify the mtime for root owned directories
# pipefail to cause the exit status from curl to propogate if it fails
- system "/bin/bash -o pipefail -c '/usr/bin/curl -sSfL http://github.com/mxcl/homebrew/tarball/master | /usr/bin/tar xz -m --strip 1'"
+ system "/bin/bash -o pipefail -c '/usr/bin/curl -sSfL https://github.com/mxcl/homebrew/tarball/master | /usr/bin/tar xz -m --strip 1'"
end
ohai "Installation successful!"