From 1db83cd4a92327dc2e3ea71fe65ecf90c58ea652 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Tue, 18 Jul 2023 12:18:19 +0100 Subject: [PATCH] dev-cmd/bump-cask-pr: fix install_bundler_gems! logic. --- Library/Homebrew/dev-cmd/bump-cask-pr.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/dev-cmd/bump-cask-pr.rb b/Library/Homebrew/dev-cmd/bump-cask-pr.rb index 9b592dd896..bd99c5338d 100644 --- a/Library/Homebrew/dev-cmd/bump-cask-pr.rb +++ b/Library/Homebrew/dev-cmd/bump-cask-pr.rb @@ -61,7 +61,7 @@ module Homebrew # This will be run by `brew audit` or `brew style` later so run it first to # not start spamming during normal output. - Homebrew.install_bundler_gems! if args.no_audit? && args.no_style? + Homebrew.install_bundler_gems! if !args.no_audit? || !args.no_style? # As this command is simplifying user-run commands then let's just use a # user path, too.