Filtered out the executor command

This commit is contained in:
Diptanu Choudhury
2016-02-05 10:51:29 -08:00
parent 2533156b9e
commit 8a81cee425

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)
}