# File lib/bundler/vendor/thor/lib/thor/actions.rb, line 74
    def initialize(args = [], options = {}, config = {})
      self.behavior = case config[:behavior].to_s
                      when "force", "skip"
                        _cleanup_options_and_set(options, config[:behavior])
                        :invoke
                      when "revoke"
                        :revoke
                      else
                        :invoke
                      end
      super
      self.destination_root = config[:destination_root]
    end