kanidm/unix_integration/build.rs
2023-04-24 19:47:52 +10:00

59 lines
1.2 KiB
Rust

#![allow(dead_code)]
use std::env;
use std::path::PathBuf;
use clap::{IntoApp, Parser};
use clap_complete::{generate_to, Shell};
include!("src/opt/ssh_authorizedkeys.rs");
include!("src/opt/tool.rs");
fn main() {
profiles::apply_profile();
let outdir = match env::var_os("OUT_DIR") {
None => return,
Some(outdir) => outdir,
};
let comp_dir = PathBuf::from(outdir)
.ancestors()
.nth(2)
.map(|p| p.join("completions"))
.expect("Unable to process completions path");
if !comp_dir.exists() {
std::fs::create_dir(&comp_dir).expect("Unable to create completions dir");
}
generate_to(
Shell::Bash,
&mut SshAuthorizedOpt::command(),
"kanidm_ssh_authorizedkeys",
comp_dir.clone(),
)
.ok();
generate_to(
Shell::Zsh,
&mut SshAuthorizedOpt::command(),
"kanidm_ssh_authorizedkeys",
comp_dir.clone(),
)
.ok();
generate_to(
Shell::Zsh,
&mut KanidmUnixParser::command(),
"kanidm_unix",
comp_dir.clone(),
)
.ok();
generate_to(
Shell::Bash,
&mut KanidmUnixParser::command(),
"kanidm_unix",
comp_dir.clone(),
)
.ok();
}