aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/bin/pre-commit.rs
blob: 44507fb74873e15ef28941ef0acc0831c6233196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//! FIXME: write short doc here

use std::process::Command;

use xtask::{codegen::Mode, project_root, run, run_rustfmt, Result};

fn main() -> Result<()> {
    run_rustfmt(Mode::Overwrite)?;
    update_staged()
}

fn update_staged() -> Result<()> {
    let root = project_root();
    let output = Command::new("git")
        .arg("diff")
        .arg("--diff-filter=MAR")
        .arg("--name-only")
        .arg("--cached")
        .current_dir(&root)
        .output()?;
    if !output.status.success() {
        anyhow::bail!(
            "`git diff --diff-filter=MAR --name-only --cached` exited with {}",
            output.status
        );
    }
    for line in String::from_utf8(output.stdout)?.lines() {
        run(&format!("git update-index --add {}", root.join(line).to_string_lossy()), ".")?;
    }
    Ok(())
}