diff options
| author | Xu Cheng | 2015-05-27 21:08:24 +0800 | 
|---|---|---|
| committer | Xu Cheng | 2015-05-29 17:02:22 +0800 | 
| commit | cb73e38cfc81c03f1d9cea528c5ce8f8cd20792c (patch) | |
| tree | 5767f3907c76361de01fc144cacd3d1e4a3cea52 /Library/Homebrew/cmd/options.rb | |
| parent | 8ff4f46e0cdae86b3d3531566901c52ac484f55b (diff) | |
| download | brew-cb73e38cfc81c03f1d9cea528c5ce8f8cd20792c.tar.bz2 | |
options: use Formula#full_name
Diffstat (limited to 'Library/Homebrew/cmd/options.rb')
| -rw-r--r-- | Library/Homebrew/cmd/options.rb | 2 | 
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 | 
