use std::process::Command;
use anyhow::Result;
use clap::Args;
use crate::{app::CommandExt as _, platform};
#[derive(Args, Debug)]
#[command()]
pub struct Cli {
target: Option<String>,
#[arg(short, long)]
release: bool,
#[arg(short = 'F', long)]
feature: Vec<String>,
}
impl Cli {
pub fn exec(self) -> Result<()> {
let mut command = Command::new("cargo");
command.in_repo();
command.arg("build");
if self.release {
command.arg("--release");
}
command.features(&self.feature);
let target = self.target.unwrap_or_else(platform::default_target);
command.args(["--target", &target]);
waiting!("Building Vector");
command.check_run()?;
Ok(())
}
}