2016-04-17 09:15:18 +02:00
|
|
|
#: * `--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.
|
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2016-09-26 01:44:51 +02:00
|
|
|
module_function
|
|
|
|
|
2010-09-11 20:22:54 +01:00
|
|
|
def __cellar
|
|
|
|
if ARGV.named.empty?
|
|
|
|
puts HOMEBREW_CELLAR
|
|
|
|
else
|
2015-05-17 20:14:26 +08:00
|
|
|
puts ARGV.resolved_formulae.map(&:rack)
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|