From be9c5d5d16332ffa888853745c7792a0c8bffd9c Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 13 Jun 2015 17:18:16 -0400 Subject: [PATCH] Remove some 10.5 hacks --- Library/Homebrew/download_strategy.rb | 2 -- Library/Homebrew/utils.rb | 2 -- 2 files changed, 4 deletions(-) diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index d270ec46ec..33f9e24a54 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 8a8fa46b85..86d5b67cde 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?