mit-commit-msg 5.11.5

Validate the commit message that a user has input
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::{env, path::PathBuf};

use mit_build_tools::manpage;

#[path = "src/cli.rs"]
mod cli;

fn main() {
    let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap());

    let app = cli::app();
    manpage::generate(&app, &out_dir, "docs/manpage.template.md");
}