mirror of
https://github.com/thelounge/thelounge
synced 2024-12-02 16:59:16 +00:00
Merge pull request #3361 from thelounge/xpaw/unknown-cmd-error
Display an error on unknown command
This commit is contained in:
commit
d7dcdd1cd4
1 changed files with 6 additions and 0 deletions
|
@ -15,6 +15,12 @@ program
|
||||||
"override entries of the configuration file, must be specified for each entry that needs to be overriden",
|
"override entries of the configuration file, must be specified for each entry that needs to be overriden",
|
||||||
Utils.parseConfigOptions
|
Utils.parseConfigOptions
|
||||||
)
|
)
|
||||||
|
.on("command:*", () => {
|
||||||
|
log.error(
|
||||||
|
`Unknown command. See ${colors.bold("--help")} for a list of available commands.`
|
||||||
|
);
|
||||||
|
process.exit(1);
|
||||||
|
})
|
||||||
.on("--help", Utils.extraHelp);
|
.on("--help", Utils.extraHelp);
|
||||||
|
|
||||||
// Parse options from `argv` returning `argv` void of these options.
|
// Parse options from `argv` returning `argv` void of these options.
|
||||||
|
|
Loading…
Reference in a new issue