mirror of
https://github.com/sharkdp/fd
synced 2024-11-02 13:06:48 +00:00
31 lines
844 B
Rust
31 lines
844 B
Rust
use std::fs;
|
|
|
|
use clap::Shell;
|
|
|
|
include!("src/app.rs");
|
|
|
|
fn main() {
|
|
let min_version = "1.36";
|
|
|
|
match version_check::is_min_version(min_version) {
|
|
Some(true) => {}
|
|
// rustc version too small or can't figure it out
|
|
_ => {
|
|
eprintln!("'fd' requires rustc >= {}", min_version);
|
|
std::process::exit(1);
|
|
}
|
|
}
|
|
|
|
let var = std::env::var_os("SHELL_COMPLETIONS_DIR").or(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("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);
|
|
}
|