10 lines
176 B
Ruby
10 lines
176 B
Ruby
module Homebrew extend self
|
|
def __cellar
|
|
if ARGV.named.empty?
|
|
puts HOMEBREW_CELLAR
|
|
else
|
|
puts ARGV.formulae.map{ |f| HOMEBREW_CELLAR+f }
|
|
end
|
|
end
|
|
end
|