Prevent interaction when removing plugin gems
This commit is contained in:
parent
b2457e3e21
commit
c8d564e578
|
@ -175,7 +175,10 @@ module Vagrant
|
||||||
Gem::Uninstaller.new(spec.name,
|
Gem::Uninstaller.new(spec.name,
|
||||||
version: spec.version,
|
version: spec.version,
|
||||||
install_dir: plugin_gem_path,
|
install_dir: plugin_gem_path,
|
||||||
ignore: true
|
all: true,
|
||||||
|
executables: true,
|
||||||
|
force: true,
|
||||||
|
ignore: true,
|
||||||
).uninstall_gem(spec)
|
).uninstall_gem(spec)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue