mirror of
https://github.com/lsd-rs/lsd
synced 2024-11-14 16:17:19 +00:00
39 lines
1.4 KiB
Rust
39 lines
1.4 KiB
Rust
// 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.
|
|
|
|
extern crate clap;
|
|
extern crate version_check;
|
|
|
|
use clap_complete::generate_to;
|
|
use clap_complete::shells::*;
|
|
use std::fs;
|
|
use std::process::exit;
|
|
|
|
include!("src/app.rs");
|
|
|
|
fn main() {
|
|
// rustc version too small or can't figure it out
|
|
if version_check::is_min_version("1.64.0") != Some(true) {
|
|
eprintln!("'lsd' requires rustc >= 1.64.0");
|
|
exit(1);
|
|
}
|
|
|
|
let outdir = std::env::var_os("SHELL_COMPLETIONS_DIR")
|
|
.or_else(|| std::env::var_os("OUT_DIR"))
|
|
.unwrap_or_else(|| exit(0));
|
|
|
|
fs::create_dir_all(&outdir).unwrap();
|
|
|
|
let mut app = build();
|
|
let bin_name = "lsd";
|
|
generate_to(Bash, &mut app, bin_name, &outdir).expect("Failed to generate Bash completions");
|
|
generate_to(Fish, &mut app, bin_name, &outdir).expect("Failed to generate Fish completions");
|
|
generate_to(Zsh, &mut app, bin_name, &outdir).expect("Failed to generate Zsh completions");
|
|
generate_to(PowerShell, &mut app, bin_name, &outdir)
|
|
.expect("Failed to generate PowerShell completions");
|
|
}
|