1
0
mirror of https://github.com/sharkdp/fd synced 2024-07-01 07:14:22 +00:00
fd/build.rs
2017-10-04 18:00:25 +02:00

19 lines
454 B
Rust

#[macro_use]
extern crate clap;
use clap::Shell;
include!("src/app.rs");
fn main() {
let outdir = match std::env::var_os("OUT_DIR") {
None => return,
Some(outdir) => outdir,
};
let mut app = build_app();
app.gen_completions("fd", Shell::Bash, &outdir);
app.gen_completions("fd", Shell::Fish, &outdir);
app.gen_completions("fd", Shell::Zsh, &outdir);
app.gen_completions("fd", Shell::PowerShell, &outdir);
}