runner-run 0.8.0

Universal project task runner
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Binary entrypoint for the `runner` CLI.
//!
//! Library docs live in `src/lib.rs`.

use anyhow::Result;

/// Entry point.
fn main() -> Result<()> {
    let code = runner::run_from_env()?;
    std::process::exit(code);
}