From c2fe40854fd12fcadeb158bff2568e4670f45d83 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Fri, 23 Apr 2021 15:53:17 -0700 Subject: [PATCH] Register otherplugin in builtins list --- internal/plugin/plugin.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/plugin/plugin.go b/internal/plugin/plugin.go index cba3aa400..af7015722 100644 --- a/internal/plugin/plugin.go +++ b/internal/plugin/plugin.go @@ -4,6 +4,7 @@ import ( sdk "github.com/hashicorp/vagrant-plugin-sdk" "github.com/hashicorp/vagrant-plugin-sdk/component" "github.com/hashicorp/vagrant/builtin/myplugin" + "github.com/hashicorp/vagrant/builtin/otherplugin" "github.com/hashicorp/vagrant/internal/factory" ) @@ -14,7 +15,8 @@ var ( // Builtins is the map of all available builtin plugins and their // options for launching them. Builtins = map[string][]sdk.Option{ - "myplugin": myplugin.CommandOptions, + "myplugin": myplugin.CommandOptions, + "otherplugin": otherplugin.CommandOptions, } // Rubies is a map of all available plugins accessible via the