aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mumctl/src/main.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/mumctl/src/main.rs b/mumctl/src/main.rs
index 41c7306..124cc8c 100644
--- a/mumctl/src/main.rs
+++ b/mumctl/src/main.rs
@@ -32,7 +32,13 @@ fn main() {
.arg(Arg::with_name("channel")
.required(true))))
.subcommand(SubCommand::with_name("status"))
- .subcommand(SubCommand::with_name("completions"));
+ .subcommand(SubCommand::with_name("completions")
+ .arg(Arg::with_name("zsh")
+ .long("zsh"))
+ .arg(Arg::with_name("bash")
+ .long("bash"))
+ .arg(Arg::with_name("fish")
+ .long("fish")));
let matches = app.clone().get_matches();