Fix some issues with commands not referencing proper classes
This commit is contained in:
parent
1489854d70
commit
6161c04fcf
|
@ -32,10 +32,12 @@ module Vagrant
|
|||
# If we reached this far then we must have a subcommand. If not,
|
||||
# then we also just print the help and exit.
|
||||
command_class = nil
|
||||
Vagrant.plugin("1").registered.each do |plugin|
|
||||
if plugin.command.has_key?(@sub_command.to_sym)
|
||||
command_class = plugin.command.get(@sub_command.to_sym)
|
||||
break
|
||||
if @sub_command
|
||||
Vagrant.plugin("1").registered.each do |plugin|
|
||||
if plugin.command.has_key?(@sub_command.to_sym)
|
||||
command_class = plugin.command.get(@sub_command.to_sym)
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ require 'vagrant/command/start_mixins'
|
|||
module VagrantPlugins
|
||||
module CommandReload
|
||||
class Command < Vagrant::Command::Base
|
||||
include StartMixins
|
||||
include Vagrant::Command::StartMixins
|
||||
|
||||
def execute
|
||||
options = {}
|
||||
|
|
|
@ -5,7 +5,7 @@ require 'vagrant/command/start_mixins'
|
|||
module VagrantPlugins
|
||||
module CommandUp
|
||||
class Command < Vagrant::Command::Base
|
||||
include StartMixins
|
||||
include Vagrant::Command::StartMixins
|
||||
|
||||
def execute
|
||||
options = {}
|
||||
|
|
Loading…
Reference in New Issue