aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/download_strategy.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index bf39c1f43..bc9c41c9e 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -98,11 +98,11 @@ private
end
class HttpDownloadStrategy <CurlDownloadStrategy
- def initialize url, name, version
+ def initialize url, name, version, specs
opoo "HttpDownloadStrategy is deprecated"
puts "Please use CurlDownloadStrategy in future"
puts "HttpDownloadStrategy will be removed in version 0.5"
- super url, name, version
+ super url, name, version, specs
end
end