diff --git a/builtin/myplugin/main.go b/builtin/myplugin/main.go index 1f5263f03..227fd8c62 100644 --- a/builtin/myplugin/main.go +++ b/builtin/myplugin/main.go @@ -15,4 +15,5 @@ var CommandOptions = []sdk.Option{ &command.Command{}, &host.AlwaysTrueHost{}, ), + sdk.WithName("myplugin"), } diff --git a/builtin/otherplugin/main.go b/builtin/otherplugin/main.go index d09cfc12e..399d54f9f 100644 --- a/builtin/otherplugin/main.go +++ b/builtin/otherplugin/main.go @@ -8,4 +8,5 @@ var CommandOptions = []sdk.Option{ sdk.WithComponents( &Command{}, ), + sdk.WithName("otherplugin"), }