diff --git a/plugins/commands/plugin/command/uninstall.rb b/plugins/commands/plugin/command/uninstall.rb index bbe78bd1d..1dfead4b2 100644 --- a/plugins/commands/plugin/command/uninstall.rb +++ b/plugins/commands/plugin/command/uninstall.rb @@ -16,8 +16,8 @@ module VagrantPlugins return if !argv raise Vagrant::Errors::CLIInvalidUsage, :help => opts.help.chomp if argv.length < 1 - # Uninstall the gem - action(Action.action_uninstall, :plugin_name => argv[0]) + # Uninstall the gems + argv.each{ |gem| action(Action.action_uninstall, :plugin_name => gem) } # Success, exit status 0 0