From 10b7160a39cda5942e222b98a79bb05d81584fd2 Mon Sep 17 00:00:00 2001 From: Diptanu Choudhury Date: Sun, 7 Feb 2016 22:07:50 -0500 Subject: [PATCH] Added the executor to the commands map --- commands.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/commands.go b/commands.go index 9bd20920b..6ad1ba3c3 100644 --- a/commands.go +++ b/commands.go @@ -57,6 +57,11 @@ func Commands(metaPtr *command.Meta) map[string]cli.CommandFactory { Meta: meta, }, nil }, + "executor": func() (cli.Command, error) { + return &command.ExecutorPluginCommand{ + Meta: meta, + }, nil + }, "fs": func() (cli.Command, error) { return &command.FSCommand{ Meta: meta,