mirror of
https://github.com/sharkdp/fd.git
synced 2024-11-17 17:35:16 +01:00
30 lines
861 B
Rust
30 lines
861 B
Rust
use clap::Shell;
|
|
use std::fs;
|
|
use std::io::{self, Write};
|
|
use std::process::exit;
|
|
|
|
include!("src/app.rs");
|
|
|
|
fn main() {
|
|
match version_check::is_min_version("1.36") {
|
|
Some(true) => {}
|
|
// rustc version too small or can't figure it out
|
|
_ => {
|
|
writeln!(&mut io::stderr(), "'fd' requires rustc >= 1.36").unwrap();
|
|
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);
|
|
}
|