Skip to content

Commit

Permalink
Merge pull request #1196 from dduugg/rubocop-fix
Browse files Browse the repository at this point in the history
Apply Style/InvertibleUnlessCondition cop
  • Loading branch information
MikeMcQuaid authored Apr 20, 2023
2 parents cdf404a + cd5b45e commit e89ae2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bundle/commands/exec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def run(*args, global: false, file: nil)
require "formulary"

ENV.deps = brewfile.entries.map do |entry|
next unless entry.type == :brew
next if entry.type != :brew

f = Formulary.factory(entry.name)
[f, f.recursive_dependencies.map(&:to_formula)]
Expand Down

0 comments on commit e89ae2f

Please sign in to comment.