zola/build.rs

13 lines
414 B
Rust
Raw Permalink Normal View History

2018-01-12 23:10:19 +00:00
// use clap::Shell;
2017-07-15 04:24:31 +00:00
include!("src/cli.rs");
fn main() {
// disabled below as it fails in CI
2018-10-31 07:18:57 +00:00
// let mut app = build_cli();
// app.gen_completions("zola", Shell::Bash, "completions/");
// app.gen_completions("zola", Shell::Fish, "completions/");
// app.gen_completions("zola", Shell::Zsh, "completions/");
// app.gen_completions("zola", Shell::PowerShell, "completions/");
2017-07-15 04:24:31 +00:00
}