Merge pull request #8087 from chrisroberts/bundler/remove-interactive

Prevent interaction when removing plugin gems
This commit is contained in:
Chris Roberts 2016-12-07 06:55:06 -08:00 committed by GitHub
commit 9b5e37ea73
1 changed files with 4 additions and 1 deletions

View File

@ -175,7 +175,10 @@ module Vagrant
Gem::Uninstaller.new(spec.name,
version: spec.version,
install_dir: plugin_gem_path,
ignore: true
all: true,
executables: true,
force: true,
ignore: true,
).uninstall_gem(spec)
end