# File lib/bundler/cli/clean.rb, line 5 def initialize(options) @options = options end
# File lib/bundler/cli/clean.rb, line 9 def run if Bundler.settings[:path] || options[:force] Bundler.load.clean(options[:"dry-run"]) else Bundler.ui.error "Can only use bundle clean when --path is set or --force is set" exit 1 end end