plugins/commands/plugin/command/expunge.rb in vagrant-unbundled-2.1.2.0 vs plugins/commands/plugin/command/expunge.rb in vagrant-unbundled-2.1.4.0

- old
+ new

@@ -14,9 +14,21 @@ o.on("--force", "Do not prompt for confirmation") do |force| options[:force] = force end + o.on("--local", "Include plugins from local project for expunge") do |l| + options[:env_local] = l + end + + o.on("--local-only", "Only expunge local project plugins") do |l| + options[:env_local_only] = l + end + + o.on("--global-only", "Only expunge global plugins") do |l| + options[:global_only] = l + end + o.on("--reinstall", "Reinstall current plugins after expunge") do |reinstall| options[:reinstall] = reinstall end end