2018-12-06 13:42:16 +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.
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate clap;
|
|
|
|
extern crate version_check;
|
|
|
|
|
|
|
|
use clap::Shell;
|
|
|
|
use std::fs;
|
|
|
|
use std::io::{self, Write};
|
|
|
|
use std::process::exit;
|
|
|
|
|
|
|
|
include!("src/app.rs");
|
|
|
|
|
|
|
|
fn main() {
|
2021-10-08 06:37:34 +00:00
|
|
|
match version_check::is_min_version("1.43.1") {
|
2019-10-24 16:10:03 +00:00
|
|
|
Some(true) => {}
|
2018-12-06 13:42:16 +00:00
|
|
|
// rustc version too small or can't figure it out
|
|
|
|
_ => {
|
2021-10-08 06:37:34 +00:00
|
|
|
writeln!(&mut io::stderr(), "'lsd' requires rustc >= 1.43.1").unwrap();
|
2018-12-06 13:42:16 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-05 13:51:23 +00:00
|
|
|
let var = std::env::var_os("SHELL_COMPLETIONS_DIR").or_else(|| std::env::var_os("OUT_DIR"));
|
2018-12-06 13:42:16 +00:00
|
|
|
let outdir = match var {
|
|
|
|
None => return,
|
|
|
|
Some(outdir) => outdir,
|
|
|
|
};
|
|
|
|
fs::create_dir_all(&outdir).unwrap();
|
|
|
|
|
2018-12-13 15:50:47 +00:00
|
|
|
let mut app = build();
|
2018-12-06 13:42:16 +00:00
|
|
|
app.gen_completions("lsd", Shell::Bash, &outdir);
|
|
|
|
app.gen_completions("lsd", Shell::Fish, &outdir);
|
|
|
|
app.gen_completions("lsd", Shell::Zsh, &outdir);
|
|
|
|
app.gen_completions("lsd", Shell::PowerShell, &outdir);
|
|
|
|
}
|