14 lines
264 B
Ruby
Raw Normal View History

2017-02-11 16:37:41 -08:00
#: * `formula` <formula>:
#: Display the path where <formula> is located.
2017-02-07 23:25:02 -08:00
require "formula"
module Homebrew
module_function
2017-02-08 00:12:50 -08:00
def formula
2017-02-07 23:25:02 -08:00
raise FormulaUnspecifiedError if ARGV.named.empty?
2017-02-11 16:37:41 -08:00
ARGV.resolved_formulae.each { |f| puts f.path }
2017-02-07 23:25:02 -08:00
end
end