8 lines
132 B
Ruby
Executable File
8 lines
132 B
Ruby
Executable File
# Downloads the tarballs for the given formulae to the Cache
|
|
|
|
require 'formula'
|
|
|
|
ARGV.formulae.each do |f|
|
|
f.downloader.fetch
|
|
end
|