repair the options

This commit is contained in:
hyuraku 2023-03-24 00:42:10 +09:00
parent ca3520e379
commit 6a5ed3497e

View File

@ -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