aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMisty De Meo2013-03-04 16:50:49 -0600
committerMisty De Meo2013-07-08 22:50:37 -0700
commit7583cc83dd631f12fba14e57445958fb752b037f (patch)
tree203eea9e27816fa2454342317017fddaf05e9dc9
parent3c567164a991d8611c2fd1c85311d011dde8515e (diff)
downloadhomebrew-7583cc83dd631f12fba14e57445958fb752b037f.tar.bz2
Curl flags: <= 10.5
So I can be lazy and not change this downstream
-rw-r--r--install2
1 files changed, 1 insertions, 1 deletions
diff --git a/install b/install
index dc0266d92..a52715de5 100644
--- a/install
+++ b/install
@@ -164,7 +164,7 @@ Dir.chdir HOMEBREW_PREFIX do
# pipefail to cause the exit status from curl to propogate if it fails
# we use -k for curl because Leopard has a bunch of bad SSL certificates
curl_flags = "fsSL"
- curl_flags << "k" if macos_version == 10.5
+ curl_flags << "k" if macos_version <= 10.5
system "/bin/bash -o pipefail -c '/usr/bin/curl -#{curl_flags} https://github.com/mxcl/homebrew/tarball/master | /usr/bin/tar xz -m --strip 1'"
end
end