From d053188da4fa45fbd7864f58f0fa5292fdf6531d Mon Sep 17 00:00:00 2001 From: Max Howell Date: Tue, 23 Aug 2011 22:03:55 +0100 Subject: [PATCH] curl -k --- install_homebrew.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install_homebrew.rb b/install_homebrew.rb index fee8298298..f206444f9a 100644 --- a/install_homebrew.rb +++ b/install_homebrew.rb @@ -122,7 +122,9 @@ 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 https://github.com/mxcl/homebrew/tarball/master | /usr/bin/tar xz -m --strip 1'" + # we use -k because OS X curl has a bunch of bad SSL certificates + # you may want to remove the -k flag from your fork! + system "/bin/bash -o pipefail -c '/usr/bin/curl -skSfL https://github.com/mxcl/homebrew/tarball/master | /usr/bin/tar xz -m --strip 1'" end warn "/usr/local/bin is not in your PATH." unless ENV['PATH'].split(':').include? '/usr/local/bin'