2017-10-21 08:16:03 +00:00
|
|
|
// Copyright (c) 2017 fd developers
|
|
|
|
// Licensed under the Apache License, Version 2.0
|
|
|
|
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0>
|
|
|
|
// or the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>,
|
|
|
|
// at your option. All files in the project carrying such
|
|
|
|
// notice may not be copied, modified, or distributed except
|
|
|
|
// according to those terms.
|
|
|
|
|
2017-10-04 12:31:08 +00:00
|
|
|
use clap::Shell;
|
2018-04-13 20:46:17 +00:00
|
|
|
use std::fs;
|
2017-11-13 15:40:30 +00:00
|
|
|
use std::io::{self, Write};
|
|
|
|
use std::process::exit;
|
2017-10-04 12:31:08 +00:00
|
|
|
|
|
|
|
include!("src/app.rs");
|
|
|
|
|
|
|
|
fn main() {
|
2018-12-09 14:11:43 +00:00
|
|
|
match version_check::is_min_version("1.31") {
|
2019-09-15 15:27:12 +00:00
|
|
|
Some(true) => {}
|
2018-09-17 19:56:07 +00:00
|
|
|
// rustc version too small or can't figure it out
|
2017-11-13 15:40:30 +00:00
|
|
|
_ => {
|
2018-12-09 14:11:43 +00:00
|
|
|
writeln!(&mut io::stderr(), "'fd' requires rustc >= 1.31").unwrap();
|
2017-11-13 15:40:30 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-17 06:11:42 +00:00
|
|
|
let var = std::env::var_os("SHELL_COMPLETIONS_DIR").or(std::env::var_os("OUT_DIR"));
|
|
|
|
let outdir = match var {
|
2017-10-04 12:31:08 +00:00
|
|
|
None => return,
|
|
|
|
Some(outdir) => outdir,
|
|
|
|
};
|
2017-11-15 02:40:03 +00:00
|
|
|
fs::create_dir_all(&outdir).unwrap();
|
2017-10-04 12:31:08 +00:00
|
|
|
|
|
|
|
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);
|
2017-10-04 21:38:01 +00:00
|
|
|
}
|