From 9d191a2419b977b82a1d3d170581e3f0edc705ee Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Tue, 17 Jul 2018 15:17:05 -0700 Subject: [PATCH] Add local option stub to allow Vagrantfile loading --- plugins/commands/plugin/command/list.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/commands/plugin/command/list.rb b/plugins/commands/plugin/command/list.rb index 7949b5db8..1b850f52a 100644 --- a/plugins/commands/plugin/command/list.rb +++ b/plugins/commands/plugin/command/list.rb @@ -9,6 +9,9 @@ module VagrantPlugins def execute opts = OptionParser.new do |o| o.banner = "Usage: vagrant plugin list [-h]" + + # Stub option to allow Vagrantfile loading + o.on("--local", "Include local plugins"){|_|} end # Parse the options