cmd/fetch: fix Rubocop warnings.

This commit is contained in:
Mike McQuaid 2016-09-10 10:24:56 +01:00
parent c45e36ffde
commit c8084b1743

View File

@ -56,11 +56,10 @@ module Homebrew
end
end
unless fetched_bottle
fetch_formula(f)
f.resources.each { |r| fetch_resource(r) }
f.patchlist.each { |p| fetch_patch(p) if p.external? }
end
next if fetched_bottle
fetch_formula(f)
f.resources.each { |r| fetch_resource(r) }
f.patchlist.each { |p| fetch_patch(p) if p.external? }
end
end