zola/build.rs

13 lines
414 B
Rust
Raw Normal View History

2018-01-13 00:10:19 +01:00
// use clap::Shell;
2017-07-15 13:24:31 +09:00
include!("src/cli.rs");
fn main() {
// disabled below as it fails in CI
2018-10-31 08:18:57 +01: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 13:24:31 +09:00
}