summaryrefslogtreecommitdiffstats
path: root/src/bin
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2020-08-31 17:50:21 -0400
committerGitHub <noreply@github.com>2020-08-31 17:50:21 -0400
commit34314112154a42f7c1d4d822f94e478b55dbe9b6 (patch)
tree3a063e7d28093ab01c1e3e1b2da3e7442b7b72c9 /src/bin
parentc6a20a14201c46441f82938adf6f3f4bbd7441a8 (diff)
other: Add autocomplete file generation (#213)
Adds shell completion generation as part of the build, as well as tweaking install scripts/templates/CI to use them.
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/main.rs b/src/bin/main.rs
index 34c8c2b7..95444491 100644
--- a/src/bin/main.rs
+++ b/src/bin/main.rs
@@ -29,7 +29,7 @@ fn main() -> error::Result<()> {
{
utils::logging::init_logger()?;
}
- let matches = get_matches();
+ let matches = clap::get_matches();
let config: Config = create_config(matches.value_of("CONFIG_LOCATION"))?;