just/src/main.rs
Casey Rodarmor ca4f2a44ed
Refactor run::run and Config (#490)
Improve color parsing, add `ConfigError`, put `invocation_directory` on Config object, return error code from `run::run` instead of exiting.
2019-10-09 00:18:53 -07:00

6 lines
83 B
Rust

fn main() {
if let Err(code) = just::run() {
std::process::exit(code);
}
}