You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
447B

  1. #[macro_use]
  2. extern crate clap;
  3. // use clap::Shell;
  4. include!("src/cli.rs");
  5. fn main() {
  6. // disabled below as it fails in CI
  7. // let mut app = build_cli();
  8. // app.gen_completions("zola", Shell::Bash, "completions/");
  9. // app.gen_completions("zola", Shell::Fish, "completions/");
  10. // app.gen_completions("zola", Shell::Zsh, "completions/");
  11. // app.gen_completions("zola", Shell::PowerShell, "completions/");
  12. }