mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-15 19:56:59 +08:00
10 lines
147 B
Ruby
10 lines
147 B
Ruby
module Homebrew
|
|
def __cellar
|
|
if ARGV.named.empty?
|
|
puts HOMEBREW_CELLAR
|
|
else
|
|
puts ARGV.formulae.map(&:rack)
|
|
end
|
|
end
|
|
end
|