2020-11-22 18:58:20 +01:00

7 lines
148 B
Rust

fn main() {
if let Err(e) = tforgione_installer::main() {
eprintln!("installer crashed: {}", e);
std::process::exit(1);
}
}