xtask/tasks/fmt/
verify_flowey.rsuse crate::Xtask;
use anyhow::Context;
use clap::Parser;
#[derive(Parser)]
#[clap(about = "Ensure all flowey pipelines are up to date")]
pub struct VerifyFlowey {
#[clap(long)]
pub fix: bool,
}
impl VerifyFlowey {
pub fn new(fix: bool) -> Self {
Self { fix }
}
}
impl Xtask for VerifyFlowey {
fn run(self, ctx: crate::XtaskCtx) -> anyhow::Result<()> {
let cmd = {
let data = fs_err::read_to_string(ctx.root.join(".cargo/config.toml"))?;
let mut cmd = None;
for ln in data.lines() {
if let Some(ln) = ln.trim().strip_prefix(r#"xflowey = ""#) {
let alias = ln
.strip_suffix('"')
.context("invalid .cargo/config.toml")?
.split(' ')
.map(|s| s.to_owned())
.collect::<Vec<_>>();
cmd = Some(alias);
}
}
cmd.context("could not find `xflowey` alias in .cargo/config.toml")?
};
let check = (!self.fix).then_some("--check");
let sh = xshell::Shell::new()?;
xshell::cmd!(sh, "cargo --quiet {cmd...} regen --quiet {check...}")
.quiet()
.run()?;
Ok(())
}
}