summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/src/main.rs b/bin/src/main.rs
index 7a2f3d0e..a17c0801 100644
--- a/bin/src/main.rs
+++ b/bin/src/main.rs
@@ -13,7 +13,7 @@ use std::io::ErrorKind;
use walkdir::WalkDir;
use crossbeam::*;
-use clap::{Arg, SubCommand};
+use clap::{Arg, AppSettings, SubCommand};
use libimagrt::runtime::Runtime;
@@ -129,6 +129,8 @@ fn main() {
.required(false)
.multiple(false)
.help("Show help"))
+ .subcommand(SubCommand::with_name("help").help("Show help"))
+ .settings(&[AppSettings::AllowExternalSubcommands])
.get_matches();
if matches.is_present("help") {