hyperfine/build.rs
2021-08-24 22:44:08 +02:00

21 lines
579 B
Rust

use std::fs;
use clap::Shell;
include!("src/app.rs");
fn main() {
let var = std::env::var_os("SHELL_COMPLETIONS_DIR").or_else(|| std::env::var_os("OUT_DIR"));
let outdir = match var {
None => return,
Some(outdir) => outdir,
};
fs::create_dir_all(&outdir).unwrap();
let mut app = build_app();
app.gen_completions("hyperfine", Shell::Bash, &outdir);
app.gen_completions("hyperfine", Shell::Fish, &outdir);
app.gen_completions("hyperfine", Shell::Zsh, &outdir);
app.gen_completions("hyperfine", Shell::PowerShell, &outdir);
}