aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/dev-cmd
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/dev-cmd')
-rw-r--r--Library/Homebrew/dev-cmd/formula.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/Library/Homebrew/dev-cmd/formula.rb b/Library/Homebrew/dev-cmd/formula.rb
index 80008a354..71687dfa7 100644
--- a/Library/Homebrew/dev-cmd/formula.rb
+++ b/Library/Homebrew/dev-cmd/formula.rb
@@ -1,5 +1,5 @@
-#: * `formula` <formulae>:
-#: echo location of the specified <formulae> to stdout
+#: * `formula` <formula>:
+#: Display the path where <formula> is
require "formula"
@@ -8,8 +8,6 @@ module Homebrew
def formula
raise FormulaUnspecifiedError if ARGV.named.empty?
- ARGV.resolved_formulae.each do |f|
- puts "#{f.path}\n"
- end
+ ARGV.resolved_formulae.each { |f| puts f.path }
end
end