Filtered out the executor command

This commit is contained in:
Diptanu Choudhury 2016-02-05 10:51:29 -08:00
parent b788017574
commit 1ba1baa9ac

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)) commandsInclude := make([]string, 0, len(commands))
for k, _ := range commands { for k, _ := range commands {
switch k { switch k {
case "spawn-daemon": case "executor":
default: default:
commandsInclude = append(commandsInclude, k) commandsInclude = append(commandsInclude, k)
} }