diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/download_strategy.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index be9f7187f..24128f6b2 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -415,6 +415,13 @@ class S3DownloadStrategy < CurlDownloadStrategy end end +class AttResearchDownloadStrategy < CurlDownloadStrategy + def curl(*args) + args << "--user" << "I accept www.opensource.org/licenses/eclipse:." + super + end +end + class SubversionDownloadStrategy < VCSDownloadStrategy def initialize(name, resource) super |
