diff options
Diffstat (limited to 'services/unix_exec_service/main.cpp')
-rw-r--r-- | services/unix_exec_service/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/services/unix_exec_service/main.cpp b/services/unix_exec_service/main.cpp index 331c98f..37a339e 100644 --- a/services/unix_exec_service/main.cpp +++ b/services/unix_exec_service/main.cpp @@ -124,7 +124,8 @@ void load_cmds() else c.command = cmd; c.description = descr; - cmds.push_back(c); + if(!c.command.empty()) + cmds.push_back(c); // printf("%s | %s | %s\n", _alias.c_str(), cmd.c_str(), descr.c_str()); } } |