class Thor::Actions::EmptyDirectory

def invoke_with_conflict_check(&block)


conditions are met.
Receives a hash of options and just execute the block if some
def invoke_with_conflict_check(&block)
  if exists?
    on_conflict_behavior(&block)
  else
    say_status :create, :green
    block.call unless pretend?
  end
  destination
end