2017-10-21 10:16:03 +02: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 14:31:08 +02:00
|
|
|
use clap::Shell;
|
2018-04-13 22:46:17 +02:00
|
|
|
use std::fs;
|
2017-11-13 16:40:30 +01:00
|
|
|
use std::io::{self, Write};
|
|
|
|
use std::process::exit;
|
2017-10-04 14:31:08 +02:00
|
|
|
|
|
|
|
include!("src/app.rs");
|
|
|
|
|
|
|
|
fn main() {
|
2018-12-09 15:11:43 +01:00
|
|
|
match version_check::is_min_version("1.31") {
|
2019-09-15 17:27:12 +02:00
|
|
|
Some(true) => {}
|
2018-09-17 21:56:07 +02:00
|
|
|
// rustc version too small or can't figure it out
|
2017-11-13 16:40:30 +01:00
|
|
|
_ => {
|
2018-12-09 15:11:43 +01:00
|
|
|
writeln!(&mut io::stderr(), "'fd' requires rustc >= 1.31").unwrap();
|
2017-11-13 16:40:30 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-17 08:11:42 +02:00
|
|
|
let var = std::env::var_os("SHELL_COMPLETIONS_DIR").or(std::env::var_os("OUT_DIR"));
|
|
|
|
let outdir = match var {
|
2017-10-04 14:31:08 +02:00
|
|
|
None => return,
|
|
|
|
Some(outdir) => outdir,
|
|
|
|
};
|
2017-11-15 03:40:03 +01:00
|
|
|
fs::create_dir_all(&outdir).unwrap();
|
2017-10-04 14:31:08 +02: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 23:38:01 +02:00
|
|
|
}
|