aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/vcodex.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/vcodex.rb')
-rw-r--r--Library/Formula/vcodex.rb5
1 files changed, 3 insertions, 2 deletions
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