# File lib/bundler/cli/package.rb, line 9
    def run
      Bundler.ui.level = "error" if options[:quiet]
      Bundler.settings[:path] = File.expand_path(options[:path]) if options[:path]
      Bundler.settings[:cache_all_platforms] = options["all-platforms"] if options.key?("all-platforms")
      Bundler.settings[:cache_path] = options["cache-path"] if options.key?("cache-path")

      setup_cache_all
      install

      # TODO: move cache contents here now that all bundles are locked
      custom_path = Pathname.new(options[:path]) if options[:path]
      Bundler.load.cache(custom_path)
    end