Fix some basic mistakes with commands

This commit is contained in:
Mitchell Hashimoto 2012-04-21 17:32:13 -07:00
parent 9956e6d012
commit 582f214024
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ module VagrantPlugins
@main_args, @sub_command, @sub_args = split_main_and_subcommand(argv)
@subcommands = Registry.new
@subcommands = Vagrant::Registry.new
@subcommands.register(:add) { Add }
@subcommands.register(:list) { List }
@subcommands.register(:remove) { Remove }

View File

@ -5,7 +5,7 @@ module VagrantPlugins
class Command < Vagrant::Command::Base
# We assume that the `up` plugin exists and that we'll have access
# to this.
include Vagrant::CommandUp::StartMixins
include VagrantPlugins::CommandUp::StartMixins
def execute
options = {}