From e8f4f16ae9622f5708ee6a5721046dfc1d200672 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Wed, 9 Oct 2013 21:54:16 -0500 Subject: vcodex: fix download strategy --- Library/Formula/vcodex.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Library') diff --git a/Library/Formula/vcodex.rb b/Library/Formula/vcodex.rb index 08f2eed00..e776d2e13 100644 --- a/Library/Formula/vcodex.rb +++ b/Library/Formula/vcodex.rb @@ -6,8 +6,9 @@ class VcodexDownloadStrategy < CurlDownloadStrategy 'I accept www.opensource.org/licenses/eclipse:.' end - def _fetch - curl @url, '--output', @tarball_path, '--user', credentials + def curl(*args) + args << '--user' << credentials + super end end -- cgit v1.2.3