diff options
| author | Adam Vandenberg | 2012-07-23 14:27:50 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-07-23 14:27:50 -0700 | 
| commit | 7e034092332d25ad83bd6d87e55c5f05a6d0d403 (patch) | |
| tree | ed01bf506288dcf47531caec1a81f4df33e4d55f /bin | |
| parent | 6445e2974dd46aea5be697e23567a5b76d86bade (diff) | |
| download | homebrew-7e034092332d25ad83bd6d87e55c5f05a6d0d403.tar.bz2 | |
Make --version/--verbose slightly less confusing.
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/brew | 13 | 
1 files changed, 5 insertions, 8 deletions
| @@ -17,14 +17,11 @@ when '--version'    puts HOMEBREW_VERSION    exit 0  when '-v' -  if ARGV.length > 1 -    puts "Homebrew #{HOMEBREW_VERSION}" -    # continue in verbose mode -    ARGV << ARGV.shift -  else -    puts HOMEBREW_VERSION -    exit 0 -  end +  puts "Homebrew #{HOMEBREW_VERSION}" +  # Shift the -v to the end of the parameter list +  ARGV << ARGV.shift +  # If no other arguments, just quit here. +  exit 0 if ARGV.length == 1  end  case HOMEBREW_PREFIX.to_s when '/', '/usr' | 
