mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-27 14:34:32 +03:00
0994c8abcd
* Add shell completions and output files to `assets/completions` * Rename files and struct name * Update tests to take into account new changes
25 lines
685 B
Rust
25 lines
685 B
Rust
use std::fs;
|
|
use structopt::clap::Shell;
|
|
|
|
include!("src/cli.rs");
|
|
|
|
const BIN_NAME: &str = "mosaic";
|
|
|
|
fn main() {
|
|
let mut clap_app = CliArgs::clap();
|
|
println!("cargo:rerun-if-changed=src/app.rs");
|
|
let mut out_dir = std::env::var_os("CARGO_MANIFEST_DIR")
|
|
.unwrap()
|
|
.to_os_string();
|
|
out_dir.push("/assets/completions");
|
|
|
|
println!(
|
|
"Completion files will to added to this location: {:?}",
|
|
out_dir
|
|
);
|
|
fs::create_dir_all(&out_dir).unwrap();
|
|
clap_app.gen_completions(BIN_NAME, Shell::Bash, &out_dir);
|
|
clap_app.gen_completions(BIN_NAME, Shell::Zsh, &out_dir);
|
|
clap_app.gen_completions(BIN_NAME, Shell::Fish, &out_dir);
|
|
}
|