diff options
| author | Mike McQuaid | 2016-09-10 10:24:56 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2016-09-11 17:58:59 +0100 | 
| commit | 990ee4f36c1d65f712c3ff05ba011cf8d92cba32 (patch) | |
| tree | 5e200a11e751577bd09486807f300ced0a208e75 | |
| parent | d9b8d0f6b11a7928dd997efb8905a9019ec6a6e9 (diff) | |
| download | brew-990ee4f36c1d65f712c3ff05ba011cf8d92cba32.tar.bz2 | |
cmd/info: fix Rubocop warnings.
| -rw-r--r-- | Library/Homebrew/cmd/info.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Library/Homebrew/cmd/info.rb b/Library/Homebrew/cmd/info.rb index 7c483c378..0310ab624 100644 --- a/Library/Homebrew/cmd/info.rb +++ b/Library/Homebrew/cmd/info.rb @@ -45,7 +45,7 @@ module Homebrew        end      else        ARGV.named.each_with_index do |f, i| -        puts unless i == 0 +        puts unless i.zero?          begin            if f.include?("/") || File.exist?(f)              info_formula Formulary.factory(f) | 
