aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2015-06-13 17:18:16 -0400
committerJack Nagel2015-06-13 17:18:17 -0400
commitbe9c5d5d16332ffa888853745c7792a0c8bffd9c (patch)
tree11c79c60f696101acb571a411fd08af56aecbd40 /Library
parent9c7b3b02ce3d6f007894e2b7137772d42a75c772 (diff)
downloadbrew-be9c5d5d16332ffa888853745c7792a0c8bffd9c.tar.bz2
Remove some 10.5 hacks
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/download_strategy.rb2
-rw-r--r--Library/Homebrew/utils.rb2
2 files changed, 0 insertions, 4 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index d270ec46e..33f9e24a5 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -488,8 +488,6 @@ class SubversionDownloadStrategy < VCSDownloadStrategy
# cache as it will make any changes to get the right revision.
svncommand = target.directory? ? 'up' : 'checkout'
args = ['svn', svncommand] + fetch_args
- # SVN shipped with XCode 3.1.4 can't force a checkout.
- args << '--force' unless MacOS.version == :leopard
args << url unless target.directory?
args << target
args << '-r' << revision if revision
diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb
index 8a8fa46b8..86d5b67cd 100644
--- a/Library/Homebrew/utils.rb
+++ b/Library/Homebrew/utils.rb
@@ -187,8 +187,6 @@ def curl *args
flags = flags.delete("#") if ARGV.verbose?
args = [flags, HOMEBREW_USER_AGENT, *args]
- # See https://github.com/Homebrew/homebrew/issues/6103
- args << "--insecure" if MacOS.version < "10.6"
args << "--verbose" if ENV['HOMEBREW_CURL_VERBOSE']
args << "--silent" unless $stdout.tty?