mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
20 lines
503 B
Ruby
20 lines
503 B
Ruby
module Hbc
|
|
class CLI
|
|
class Reinstall < Install
|
|
def run
|
|
casks.each do |cask|
|
|
Installer.new(cask, binaries: binaries?,
|
|
verbose: verbose?,
|
|
force: force?,
|
|
skip_cask_deps: skip_cask_deps?,
|
|
require_sha: require_sha?).reinstall
|
|
end
|
|
end
|
|
|
|
def self.help
|
|
"reinstalls the given Cask"
|
|
end
|
|
end
|
|
end
|
|
end
|