Make zap recognize --force.

This commit is contained in:
Markus Reiter 2017-07-30 18:51:05 +02:00
parent 8779784d70
commit 0d1162d821

View File

@ -1,6 +1,8 @@
module Hbc
class CLI
class Zap < AbstractCommand
option "--force", :force, false
def initialize(*)
super
raise CaskUnspecifiedError if args.empty?
@ -13,7 +15,7 @@ module Hbc
def zap_casks
casks.each do |cask|
odebug "Zapping Cask #{cask}"
Installer.new(cask, verbose: verbose?).zap
Installer.new(cask, verbose: verbose?, force: force?).zap
end
end