options: use Formula#full_name

This commit is contained in:
Xu Cheng 2015-05-27 21:08:24 +08:00
parent 8ff4f46e0c
commit cb73e38cfc

View File

@ -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