aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2016-09-10 10:24:56 +0100
committerMike McQuaid2016-09-11 17:58:59 +0100
commit990ee4f36c1d65f712c3ff05ba011cf8d92cba32 (patch)
tree5e200a11e751577bd09486807f300ced0a208e75 /Library
parentd9b8d0f6b11a7928dd997efb8905a9019ec6a6e9 (diff)
downloadbrew-990ee4f36c1d65f712c3ff05ba011cf8d92cba32.tar.bz2
cmd/info: fix Rubocop warnings.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/info.rb2
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)