aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/options.rb
diff options
context:
space:
mode:
authorXu Cheng2015-05-27 21:08:24 +0800
committerXu Cheng2015-05-29 17:02:22 +0800
commitcb73e38cfc81c03f1d9cea528c5ce8f8cd20792c (patch)
tree5767f3907c76361de01fc144cacd3d1e4a3cea52 /Library/Homebrew/cmd/options.rb
parent8ff4f46e0cdae86b3d3531566901c52ac484f55b (diff)
downloadbrew-cb73e38cfc81c03f1d9cea528c5ce8f8cd20792c.tar.bz2
options: use Formula#full_name
Diffstat (limited to 'Library/Homebrew/cmd/options.rb')
-rw-r--r--Library/Homebrew/cmd/options.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/options.rb b/Library/Homebrew/cmd/options.rb
index 1cfbbef7b..4e7fe0a42 100644
--- a/Library/Homebrew/cmd/options.rb
+++ b/Library/Homebrew/cmd/options.rb
@@ -18,7 +18,7 @@ module Homebrew
if ARGV.include? '--compact'
puts f.options.as_flags.sort * " "
else
- puts f.name if formulae.length > 1
+ puts f.full_name if formulae.length > 1
dump_options_for_formula f
puts
end