Filtered out the executor command

This commit is contained in:
Diptanu Choudhury 2016-02-05 10:51:29 -08:00
parent b788017574
commit 1ba1baa9ac
1 changed files with 1 additions and 1 deletions

2
main.go Executable file → Normal file
View File

@ -32,7 +32,7 @@ func RunCustom(args []string, commands map[string]cli.CommandFactory) int {
commandsInclude := make([]string, 0, len(commands))
for k, _ := range commands {
switch k {
case "spawn-daemon":
case "executor":
default:
commandsInclude = append(commandsInclude, k)
}