diff options
Diffstat (limited to 'source/app/src/wandac.cpp')
| -rw-r--r-- | source/app/src/wandac.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/app/src/wandac.cpp b/source/app/src/wandac.cpp index ff27e65..65af1db 100644 --- a/source/app/src/wandac.cpp +++ b/source/app/src/wandac.cpp @@ -24,7 +24,9 @@ struct cli auto parse(int argc, char const * const * argv, std::ostream & error) { - parser |= lyra::arg{command, "command"}("The command to send to the deamon").required() | lyra::help(help); + parser |= // + lyra::help(help) | // + lyra::arg{command, "command"}("The command to send to the deamon").required(); auto result = parser.parse({argc, argv}); |
