From 6a5ed3497ea9f6832696fe1c22ae6c40ff55b89a Mon Sep 17 00:00:00 2001 From: hyuraku <32809703+hyuraku@users.noreply.github.com> Date: Fri, 24 Mar 2023 00:42:10 +0900 Subject: [PATCH] repair the options --- Library/Homebrew/cask/reinstall.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/cask/reinstall.rb b/Library/Homebrew/cask/reinstall.rb index 424e564461..aa4c361542 100644 --- a/Library/Homebrew/cask/reinstall.rb +++ b/Library/Homebrew/cask/reinstall.rb @@ -17,6 +17,8 @@ module Cask ) require "cask/installer" + quarantine = true if quarantine.nil? + casks.each do |cask| Installer.new(cask, binaries: binaries, @@ -24,7 +26,7 @@ module Cask force: force, skip_cask_deps: skip_cask_deps, require_sha: require_sha, - quarantine: quarantine || true, + quarantine: quarantine, zap: zap).reinstall end end