mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
20 lines
515 B
Ruby
20 lines
515 B
Ruby
#: * `--cellar`:
|
|
#: Display Homebrew's Cellar path. *Default:* `$(brew --prefix)/Cellar`, or if
|
|
#: that directory doesn't exist, `$(brew --repository)/Cellar`.
|
|
#:
|
|
#: * `--cellar` <formula>:
|
|
#: Display the location in the cellar where <formula> would be installed,
|
|
#: without any sort of versioned directory as the last path.
|
|
|
|
module Homebrew
|
|
module_function
|
|
|
|
def __cellar
|
|
if ARGV.named.empty?
|
|
puts HOMEBREW_CELLAR
|
|
else
|
|
puts ARGV.resolved_formulae.map(&:rack)
|
|
end
|
|
end
|
|
end
|